/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Countdown Floating Widget - Desktop Only */
.countdown-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    color: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
    z-index: 999;
    min-width: 240px;
    max-width: 280px;
    animation: pulse-glow 2s infinite, float-bounce 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: default;
    user-select: none;
    display: block;
}

/* Hide floating widget on mobile for better UX */
@media (max-width: 768px) {
    .countdown-widget {
        display: none !important;
    }
}

  /* Enhanced Viral Sharing Styles */
  .viral-section {
      text-align: center;
      margin: 20px 0;
  }

  .viral-title {
      color: #1E40AF;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }

  .viral-title i {
      color: #F59E0B;
      font-size: 24px;
  }

  .viral-subtitle {
      color: #374151;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .viral-subtitle strong {
      color: #1E40AF;
  }

  .viral-incentive {
      background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
      border-radius: 16px;
      padding: 20px;
      margin: 20px 0;
      border: 2px solid rgba(59, 130, 246, 0.3);
      box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
  }

  .incentive-text {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      color: white;
      font-weight: 500;
      font-size: 15px;
      line-height: 1.5;
  }

  .incentive-text i {
      font-size: 28px;
      color: #FDE68A;
      flex-shrink: 0;
  }

.share-platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.share-section h4 {
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    border: none;
    border-radius: 16px;
    background: #F9FAFB;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.share-btn i {
    font-size: 24px;
}

/* Platform-specific colors */
.share-btn.whatsapp { background: #E8F5E8; color: #25D366; }
.share-btn.whatsapp:hover { background: #25D366; color: white; }

.share-btn.facebook { background: #EBF1FF; color: #1877F2; }
.share-btn.facebook:hover { background: #1877F2; color: white; }

.share-btn.twitter { background: #F0F0F0; color: #000000; }
.share-btn.twitter:hover { background: #000000; color: white; }

.share-btn.instagram { background: #FDF2F8; color: #E4405F; }
.share-btn.instagram:hover { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); color: white; }

.share-btn.tiktok { background: #FEF2F2; color: #FF0050; }
.share-btn.tiktok:hover { background: #FF0050; color: white; }

.share-btn.telegram { background: #EFF6FF; color: #0088CC; }
.share-btn.telegram:hover { background: #0088CC; color: white; }

.share-btn.linkedin { background: #EFF6FF; color: #0A66C2; }
.share-btn.linkedin:hover { background: #0A66C2; color: white; }

.share-btn.email { background: #F3F4F6; color: #6B7280; }
.share-btn.email:hover { background: #6B7280; color: white; }

.share-btn.copy { background: #EFF6FF; color: #3B82F6; }
.share-btn.copy:hover { background: #3B82F6; color: white; }

.modal-actions-final {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D1D5DB;
    color: #6B7280;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: #9CA3AF;
    color: #374151;
    background: #F9FAFB;
}

/* Mobile optimizations for sharing */
@media (max-width: 768px) {
    .share-platforms-grid {
        gap: 20px;
    }
    
    .share-buttons-row {
        justify-content: center;
    }
    
    .share-btn {
        min-width: 70px;
        padding: 14px 10px;
        font-size: 11px;
    }
    
    .share-btn i {
        font-size: 20px;
    }
    
    .modal-actions-final {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-outline, .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced urgency indicator styling */
.urgency-indicator {
    animation: pulse-urgency 2s infinite;
}

.urgency-indicator strong {
    color: #FF6B35;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 107, 53, 0.3);
}

@keyframes pulse-urgency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    }
}

.countdown-widget.dragging {
    animation: none;
    cursor: grabbing;
    user-select: none;
    z-index: 1001;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3), 0 0 0 0 rgba(30, 136, 229, 0.7);
    }
    50% {
        box-shadow: 0 15px 40px rgba(30, 136, 229, 0.5), 0 0 0 10px rgba(30, 136, 229, 0);
    }
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-55%) translateX(-5px);
    }
}

.countdown-header {
    text-align: center;
    margin-bottom: 15px;
}

.countdown-city {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 5px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 3px;
    font-weight: 500;
}

.countdown-cta {
    text-align: center;
    margin-top: 15px;
}

.countdown-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.countdown-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown-drag-handle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: grab;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    opacity: 0.7;
}

.drag-handle-top-left {
    top: 6px;
    left: 6px;
}

.drag-handle-top-right {
    top: 6px;
    right: 6px;
}

.drag-handle-bottom-left {
    bottom: 6px;
    left: 6px;
}

.drag-handle-bottom-right {
    bottom: 6px;
    right: 6px;
}

.countdown-widget:hover .countdown-drag-handle {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.countdown-drag-handle:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    opacity: 1;
}

.countdown-drag-handle:active {
    cursor: grabbing;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Close button for countdown widget */
.countdown-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    border: 2px solid white;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.countdown-close-btn:hover {
    background: #ff2222;
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.countdown-close-btn:active {
    transform: scale(0.95);
}


.launch-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #1E88E5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
    display: inline-block;
    animation: badge-shine 2s infinite;
}

@keyframes badge-shine {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(30, 136, 229, 0.5);
    }
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
    .countdown-widget {
        right: 8px;
        min-width: 200px;
        max-width: 220px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .countdown-city {
        font-size: 16px;
    }
    
    .countdown-number {
        font-size: 16px;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .countdown-subtitle {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .launch-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .countdown-drag-handle {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .countdown-widget {
        right: 5px;
        min-width: 180px;
        max-width: 200px;
        padding: 10px;
        font-size: 13px;
    }
    
    .countdown-city {
        font-size: 14px;
    }
    
    .countdown-subtitle {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .countdown-number {
        font-size: 14px;
    }
    
    .countdown-label {
        font-size: 9px;
    }
    
    .countdown-timer {
        gap: 4px;
    }
    
    .countdown-item {
        min-width: 35px;
    }
    
    .launch-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
}

@media (max-width: 360px) {
    .countdown-widget {
        right: 3px;
        min-width: 160px;
        max-width: 180px;
        padding: 8px;
    }
    
    .countdown-close-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
        top: -8px;
        right: -8px;
    }
}

/* Message animations for notifications */
@keyframes slideInDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutUp {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

/* Legal Pages Styling */
.legal-hero {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: white;
    padding: 120px 0 80px;
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.legal-summary {
    margin-top: 32px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.summary-card i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.summary-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.summary-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.legal-content-section {
    padding: 80px 0;
    background: #fafafa;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-sticky h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #616161;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-nav-link:hover {
    background: rgba(30, 136, 229, 0.1);
    color: #1E88E5;
}

.legal-nav-link.active {
    background: rgba(30, 136, 229, 0.1);
    color: #1E88E5;
}

.legal-nav-link i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.legal-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-intro {
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(30, 136, 229, 0.1);
}

.legal-section h2 i {
    color: #1E88E5;
    font-size: 24px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #1a1a1a;
}

.legal-section p {
    margin-bottom: 16px;
    color: #424242;
    line-height: 1.7;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 0;
}

.legal-section li {
    margin-bottom: 12px;
    color: #424242;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.legal-section li::before {
    content: "•";
    color: #1E88E5;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, rgba(30, 136, 229, 0.02) 100%);
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    color: #1E88E5;
    font-size: 24px;
    margin-top: 4px;
}

.highlight-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1E88E5;
}

.highlight-content p {
    margin: 0;
    color: #424242;
    line-height: 1.6;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #1E88E5;
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Terms Page Specific Styles */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.terms-card {
    background: white;
    border: 1px solid rgba(30, 136, 229, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.terms-card:hover {
    border-color: #1E88E5;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
    transform: translateY(-2px);
}

.terms-card h3 {
    color: #1E88E5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-card p {
    color: #616161;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design for Legal Pages */
@media (max-width: 968px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-sticky {
        position: static;
        margin-bottom: 40px;
    }
    
    .legal-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-title {
        font-size: 36px;
    }
    
    .legal-main {
        padding: 24px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    
    .legal-title {
        font-size: 28px;
    }
    
    .legal-main {
        padding: 20px;
    }
    
    .legal-nav {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo and Branding */
.logo {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    /* Optimizado para PNG - sin filtros complejos */
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: inherit;
    text-decoration: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo:hover .logo {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

/* Brand Icons in Content */
.brand-icon {
    color: #1E88E5;
    margin-right: 8px;
}

.car-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('assets/fuimonos_icono.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    /* Sin filtros complejos para PNG */
}



.gradient-text {
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
    background: rgba(158, 158, 158, 0.1);
    color: #616161;
    border: 1px solid rgba(158, 158, 158, 0.2);
}

.btn-secondary:hover {
    background: rgba(158, 158, 158, 0.15);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #1E88E5;
    border: 1.5px solid #1E88E5;
}

.btn-outline:hover {
    background: #1E88E5;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1E88E5;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #616161;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1E88E5;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #616161;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.02) 0%, rgba(255, 107, 53, 0.02) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-icon {
    color: #1E88E5;
    margin-right: 12px;
    font-size: 0.9em;
    vertical-align: middle;
}

/* Hero Integrated Countdown Styles */
.hero-countdown-integration {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(30, 136, 229, 0.2);
}

.countdown-inline {
    text-align: center;
}

.countdown-text {
    font-size: 18px;
    color: #424242;
    margin-bottom: 12px;
    font-weight: 500;
}

.countdown-timer-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-item-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30, 136, 229, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-number-inline {
    font-size: 24px;
    font-weight: 700;
    color: #1E88E5;
    line-height: 1;
}

.countdown-label-inline {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.countdown-sep {
    font-size: 20px;
    font-weight: bold;
    color: #1E88E5;
    margin: 0 4px;
}

/* Mobile optimizations for hero countdown */
@media (max-width: 768px) {
    .hero-countdown-integration {
        margin: 16px 0;
        padding: 16px;
    }
    
    .countdown-text {
        font-size: 16px;
    }
    
    .countdown-number-inline {
        font-size: 20px;
    }
    
    .countdown-item-inline {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .hero-icon {
        margin-right: 8px;
        font-size: 0.8em;
    }
}

.hero-description {
    font-size: 20px;
    color: #616161;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1E88E5;
}

.stat-label {
    font-size: 14px;
    color: #9E9E9E;
}

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

.phone-mockup {
    position: relative;
    z-index: 2;
}

.app-screenshot {
    width: 300px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: #1E88E5;
}

.card-driver {
    top: 20%;
    left: -20%;
    animation-delay: 0s;
}

.card-location {
    top: 60%;
    right: -20%;
    animation-delay: 2s;
}

.card-payment {
    bottom: 20%;
    left: -10%;
    animation-delay: 4s;
}

.card-app {
    top: 80%;
    right: -15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-description {
    font-size: 20px;
    color: #616161;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E88E5, #FF6B35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-description {
    color: #616161;
    line-height: 1.6;
}

/* Drivers Section */
.drivers {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: white;
}

.drivers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.drivers .section-title,
.drivers .section-description {
    color: white;
    text-align: left;
}

.benefits-list {
    margin: 40px 0;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.benefit i {
    font-size: 24px;
    color: #FF6B35;
    margin-top: 4px;
}

.benefit h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit p {
    color: rgba(255, 255, 255, 0.8);
}

.driver-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.safety-feature {
    text-align: center;
    padding: 32px 24px;
}

.safety-feature i {
    font-size: 48px;
    color: #1E88E5;
    margin-bottom: 24px;
}

.safety-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.safety-feature p {
    color: #616161;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-description {
    font-size: 20px;
    color: #616161;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: #9E9E9E;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #1E88E5;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9E9E9E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1E88E5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: #9E9E9E;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Phone Mockup Styles */
.app-screenshot-placeholder {
    width: 300px;
    height: 600px;
    position: relative;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.app-logo {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.app-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.app-content p {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.phone-screen::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .app-screenshot-placeholder {
        width: 250px;
        height: 500px;
    }
    
    .app-content p {
        font-size: 18px;
    }
    
    .app-icon {
        font-size: 40px;
    }
    
    .drivers-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   REGISTRATION PAGE & CTA STYLES
======================================== */

/* Hero CTA Section */
.hero-cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(30, 136, 229, 0.2);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    color: #1E88E5;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-accent {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.registration-hero {
    text-align: center;
    margin-bottom: 60px;
}

.registration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.registration-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Registration Form Container */
.registration-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.registration-form {
    padding: 50px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.section-title i {
    color: #1E88E5;
    font-size: 22px;
}

.section-description {
    font-size: 14px;
    color: #64748b;
    margin: -15px 0 25px 0;
    line-height: 1.5;
}

/* Form Groups and Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E88E5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Interest Options */
.interest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.interest-option {
    position: relative;
}

.interest-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.interest-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.interest-label:hover {
    border-color: #1E88E5;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.1);
    transform: translateY(-2px);
}

.interest-option input[type="checkbox"]:checked + .interest-label {
    border-color: #1E88E5;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.2);
}

.interest-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.interest-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.interest-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 250px;
    justify-content: center;
}

.form-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.4);
}

.form-actions .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Conversion Optimization Elements */
.urgency-indicator {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
}

.urgency-indicator i {
    animation: tick 1s infinite;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 10px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #10B981;
    font-weight: 500;
}

.trust-item i {
    font-size: 14px;
}

@keyframes tick {
    0%, 50% { transform: scale(1); }
    25% { transform: scale(1.1); }
}

/* ========================================
   HERO OPTIMIZATION STYLES
======================================== */

/* Primary CTA Section */
.hero-primary-cta {
    margin: 30px 0;
}

.launch-announcement {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(30, 136, 229, 0.2);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.launch-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: pulse-glow 2s infinite;
}

.primary-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.primary-cta-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 60px;
    min-width: 320px;
    justify-content: center;
    text-align: center;
}

.hero-main-cta {
    position: relative;
    overflow: hidden;
}

.hero-main-cta span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-main-cta small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

/* Secondary Section */
.hero-secondary-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.secondary-divider {
    text-align: center;
    margin-bottom: 20px;
}

.secondary-divider span {
    font-size: 14px;
    color: #64748b;
    background: white;
    padding: 0 15px;
    position: relative;
}

/* Launch Countdown Section */
.launch-countdown-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.launch-countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.launch-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.launch-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse-glow 2s infinite;
}

.launch-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-description {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Large Countdown Timer */
.launch-countdown-display {
    margin: 50px 0;
}

.countdown-header-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f1f5f9;
}

.countdown-timer-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.countdown-item-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number-large {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 5px;
}

.countdown-label-large {
    font-size: 12px;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 300;
    color: #64748b;
    animation: blink 1s infinite;
}

.launch-datetime {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(30, 136, 229, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    margin: 0 auto;
    max-width: fit-content;
}

.launch-datetime i {
    color: #1E88E5;
    font-size: 18px;
}

.launch-datetime strong {
    color: white;
    margin-right: 8px;
}

.launch-datetime span {
    color: #cbd5e1;
    font-size: 14px;
}

/* Final CTA */
.launch-cta-final {
    margin-top: 50px;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #10B981;
    font-weight: 600;
}

.urgency-message i {
    font-size: 18px;
}

.btn-massive {
    padding: 25px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 60px;
    min-width: 400px;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite;
}

.btn-massive span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-massive small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-massive:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.5);
}

.trust-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 14px;
}

.trust-guarantee i {
    color: #10B981;
}

/* Animations */
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Driver placeholder styles (replacement for problematic image) */
.driver-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(30, 136, 229, 0.2);
}

.driver-graphic {
    text-align: center;
    padding: 40px;
}

.driver-graphic i {
    font-size: 80px;
    color: #1E88E5;
    margin-bottom: 20px;
    display: block;
}

.driver-graphic h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
}

.driver-graphic p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    color: white;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.modal-footer {
    padding: 20px 30px 40px;
    text-align: center;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #1E88E5 0%, #FF6B35 100%);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.modal-footer .btn-secondary {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.modal-footer .btn-secondary:hover {
    border-color: #1E88E5;
    color: #1E88E5;
    transform: translateY(-2px);
}

/* Success Modal Enhanced Styles */
.success-main-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
    text-align: center;
}

.launch-preview {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.launch-date,
.launch-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0;
    font-weight: 600;
    color: #1E88E5;
}

.launch-date i,
.launch-location i {
    font-size: 18px;
}

.viral-section {
    text-align: center;
    margin: 25px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.viral-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.viral-title i {
    color: #FF6B35;
}

.viral-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

/* Social Share Buttons */
.social-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #128C7E;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166FE5;
}

.share-btn.telegram {
    background: #0088CC;
    color: white;
}

.share-btn.telegram:hover {
    background: #006699;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
    .registration-section {
        padding: 60px 0;
    }
    
    .registration-title {
        font-size: 32px;
    }
    
    .registration-subtitle {
        font-size: 16px;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .interest-options {
        grid-template-columns: 1fr;
    }
    
    .interest-label {
        padding: 16px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px 30px;
    }
    
    .hero-cta {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .form-actions .btn-primary {
        width: 100%;
        min-width: auto;
    }
    
    .hero-buttons .btn-large,
    .cta-content .btn-large {
        width: 100%;
    }
    
    /* Mobile optimizations for sharing modal */
    .social-share-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .share-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .launch-preview {
        padding: 15px;
        margin: 15px 0;
    }
    
    .viral-title {
        font-size: 16px;
    }
    
    .success-main-text {
        font-size: 15px;
    }
    
    /* Hero Optimization Mobile */
    .primary-cta-title {
        font-size: 22px;
    }
    
    .btn-xl {
        min-width: 280px;
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .launch-announcement {
        padding: 20px;
    }
    
    /* Launch Countdown Mobile */
    .launch-title {
        font-size: 32px;
    }
    
    .launch-description {
        font-size: 16px;
    }
    
    .countdown-timer-large {
        gap: 10px;
    }
    
    .countdown-item-large {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number-large {
        font-size: 32px;
    }
    
    .countdown-separator {
        font-size: 24px;
    }
    
    .btn-massive {
        min-width: 300px;
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .launch-datetime {
        padding: 12px 20px;
        font-size: 14px;
    }
}