/* 
  Mobile Responsive CSS - Centralized
  Comprehensive mobile optimization for all recovery/broker pages
  Premium hero design with CTA-first approach
*/

@media (max-width: 768px) {
  /* HERO SECTION - PREMIUM MOBILE DESIGN */
  .hero {
    min-height: auto !important;
    padding: 90px 20px 40px !important;
    background: linear-gradient(
      135deg, 
      rgba(99, 102, 241, 0.08) 0%, 
      rgba(139, 92, 246, 0.1) 30%,
      rgba(236, 72, 153, 0.06) 60%,
      rgba(6, 182, 212, 0.08) 100%
    );
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
  }
  
  .hero-aurora,
  .particles,
  .particle {
    display: none !important;
  }
  
  .hero-content {
    padding: 0;
    max-width: 100%;
    position: relative;
    z-index: 1;
  }
  
  /* Hero Badge - Compact but visible */
  .hero-badge {
    margin-bottom: 20px !important;
    font-size: 0.75rem !important;
    padding: 10px 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    border-radius: 50px !important;
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.15);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .hero-badge span:first-child {
    display: inline !important;
    font-size: 1rem;
  }
  
  /* Hero Title - Bold & Readable */
  .hero h1,
  .hero-content h1 {
    font-size: 1.75rem !important;
    margin-bottom: 16px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
  }
  
  .hero h1 .text-gradient,
  .hero-content h1 .text-gradient {
    font-size: inherit !important;
    line-height: inherit !important;
  }
  
  /* Hero Description - Concise */
  .hero-content > p,
  .hero p {
    font-size: 0.95rem !important;
    margin-bottom: 24px !important;
    line-height: 1.65 !important;
    color: var(--text-secondary);
    max-width: 100% !important;
  }
  
  /* CTA BUTTONS - Premium & Prominent */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 24px !important;
    width: 100%;
  }
  
  .hero-buttons .btn {
    font-size: 1rem !important;
    padding: 16px 28px !important;
    width: 100% !important;
    border-radius: 12px !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
  }
  
  .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: #fff !important;
  }
  
  .hero-buttons .btn-secondary {
    background: #fff !important;
    border: 2px solid rgba(99, 102, 241, 0.3) !important;
    color: #0f172a !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* SECTIONS - Optimized Spacing */
  .section {
    padding: 48px 20px !important;
  }
  
  .section-sm {
    padding: 32px 20px !important;
  }
  
  .features {
    padding: 40px 20px !important;
  }
  
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  /* Features Header */
  .features-header {
    margin-bottom: 28px !important;
  }
  
  .features-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .features-header p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  
  /* CARD GRID - Clean Layout */
  .card-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 20px !important;
  }
  
  .card {
    padding: 20px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    backdrop-filter: blur(10px);
  }
  
  .card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
    font-weight: 600;
  }
  
  .card p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }
  
  .card-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
  }
  
  /* VALUES LIST - Horizontal Layout */
  .values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .value-item {
    padding: 16px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    text-align: left !important;
  }
  
  .value-number {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .value-content {
    flex: 1;
  }
  
  .value-content h3,
  .value-item h3 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
    font-weight: 600;
  }
  
  .value-content p,
  .value-item p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
  
  /* WHY US GRID */
  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .why-item {
    padding: 16px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    text-align: left !important;
  }
  
  .why-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }
  
  .why-content h4 {
    font-size: 0.95rem !important;
    margin-bottom: 6px !important;
    font-weight: 600;
  }
  
  .why-content p {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }
  
  /* STATS */
  .stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  
  .stat-item {
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }
  
  .stat-number {
    font-size: 1.25rem !important;
    margin-bottom: 4px !important;
  }
  
  .stat-label {
    font-size: 0.75rem !important;
    line-height: 1.3;
  }
  
  /* CTA SECTION */
  .cta-section {
    padding: 40px 20px !important;
  }
  
  .cta-content {
    padding: 28px 20px !important;
    border-radius: 20px !important;
  }
  
  .cta-section h2 {
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
    line-height: 1.3;
  }
  
  .cta-section p {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
  }
  
  /* FOOTER */
  .footer {
    padding: 36px 20px 24px !important;
  }
  
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .footer-col h4 {
    font-size: 0.85rem !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-col a {
    font-size: 0.9rem !important;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
  }
  
  .footer-bottom p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }
  
  /* MODAL - Premium Design */
  .modal-overlay {
    padding: 20px !important;
    align-items: flex-start !important;
    padding-top: 60px !important;
  }
  
  .modal-content {
    padding: 28px 24px !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 20px !important;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .modal-header h2 {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }
  
  .modal-header p {
    font-size: 0.9rem !important;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 16px !important; /* Prevents iOS zoom */
    padding: 14px !important;
    border-radius: 10px !important;
  }
  
  /* REGULATORY DISCLAIMER */
  .section-sm[style*="background: rgba(236, 72, 153"] {
    padding: 20px !important;
  }
  
  .section-sm[style*="background: rgba(236, 72, 153"] p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .hero {
    padding: 85px 16px 32px !important;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 1.5rem !important;
    margin-bottom: 14px !important;
  }
  
  .hero-badge {
    font-size: 0.7rem !important;
    padding: 8px 14px !important;
    margin-bottom: 16px !important;
  }
  
  .hero-content > p,
  .hero p {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
  }
  
  .hero-buttons {
    gap: 10px !important;
    margin-top: 20px !important;
  }
  
  .hero-buttons .btn {
    font-size: 0.95rem !important;
    padding: 14px 24px !important;
    min-height: 48px !important;
  }
  
  .section {
    padding: 36px 16px !important;
  }
  
  .features-header h2 {
    font-size: 1.3rem !important;
  }
  
  .card {
    padding: 16px !important;
  }
  
  .card-grid,
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    gap: 12px !important;
  }
  
  .value-item,
  .why-item {
    padding: 14px !important;
    gap: 12px !important;
  }
  
  .value-number {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
  }
  
  .cta-content {
    padding: 24px 18px !important;
  }
  
  .footer {
    padding: 28px 16px 20px !important;
  }
  
  .modal-content {
    padding: 24px 20px !important;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 360px) {
  .hero {
    padding: 80px 14px 28px !important;
  }
  
  .hero h1,
  .hero-content h1 {
    font-size: 1.35rem !important;
  }
  
  .hero-badge {
    font-size: 0.65rem !important;
    padding: 7px 12px !important;
  }
  
  .hero-content > p,
  .hero p {
    font-size: 0.85rem !important;
  }
  
  .hero-buttons .btn {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
    min-height: 44px !important;
  }
  
  .section {
    padding: 30px 14px !important;
  }
  
  .features-header h2 {
    font-size: 1.2rem !important;
  }
  
  .card {
    padding: 14px !important;
  }
  
  .stat-number {
    font-size: 1.1rem !important;
  }
  
  .stat-label {
    font-size: 0.7rem !important;
  }
}
