/* ============================================
   GET LISTED PAGE - DESKTOP ENHANCEMENTS
   Premium layout for larger screens
   ============================================ */

@media (min-width: 1024px) {
  /* Hero Section - Two Column Layout */
  .listed-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle gradient overlay */
  .listed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 80% 50%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(255, 138, 29, 0.05) 0%, transparent 40%);
    pointer-events: none;
  }
  
  .listed-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    position: relative;
    z-index: 1;
  }
  
  /* Larger, more impactful title */
  .listed-hero-title {
    font-size: clamp(3.5rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 28px;
  }
  
  /* Enhanced subtitle */
  .listed-hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 48px;
    opacity: 0.95;
  }
  
  /* Premium CTA Button */
  .listed-hero-btn {
    padding: 20px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 
      0 8px 32px rgba(229, 57, 53, 0.4),
      0 4px 16px rgba(255, 138, 29, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .listed-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 12px 40px rgba(229, 57, 53, 0.5),
      0 6px 20px rgba(255, 138, 29, 0.4);
  }
  
  /* Trust indicators below hero */
  .listed-hero-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .listed-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .listed-trust-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    backdrop-filter: blur(10px);
  }
  
  .listed-trust-text {
    text-align: left;
  }
  
  .listed-trust-text strong {
    display: block;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .listed-trust-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
  }
  
  /* Section Spacing */
  .listed-section--ideal,
  .listed-section--not-ready,
  .listed-section--requirements,
  .listed-section--process {
    padding: 120px 0;
  }
  
  /* Section Headers - editorial stack */
  .listed-section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto 56px;
  }
  
  .listed-section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: left;
    margin: 0;
    max-width: 11ch;
  }

  .listed-section--requirements .listed-section-header {
    gap: 14px;
    margin-bottom: 48px;
  }

  .listed-section--requirements .listed-section-header h2 {
    max-width: 14ch;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  
  .listed-section-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    padding: 10px 20px;
    font-size: 13px;
    align-self: flex-start;
  }
  
  /* Ideal Partner Cards - Enhanced Grid */
  .listed-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .listed-fit-card {
    padding: 48px 36px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.05),
      0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .listed-fit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff8a1d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .listed-fit-card:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 20px 40px rgba(0,0,0,0.1),
      0 8px 16px rgba(0,0,0,0.05);
  }
  
  .listed-fit-card:hover::before {
    transform: scaleX(1);
  }
  
  .listed-fit-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
  }
  
  .listed-fit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 138, 29, 0.1) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
  }
  
  .listed-fit-card:hover .listed-fit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 138, 29, 0.15) 100%);
  }
  
  .listed-fit-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
  }
  
  .listed-fit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
  }
  
  /* Not Ready Section - Dark Cards */
  .listed-section--not-ready .listed-fit-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .listed-section--not-ready .listed-fit-card h3 {
    color: #fff;
  }
  
  .listed-section--not-ready .listed-fit-card p {
    color: rgba(255,255,255,0.7);
  }
  
  .listed-section--not-ready .listed-fit-icon {
    background: rgba(255,255,255,0.08);
    color: #ff8a1d;
  }
  
  /* Requirements Section */
  .listed-req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .listed-req-card {
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
  }
  
  .listed-req-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }
  
  .listed-req-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .listed-req-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  /* Process Section */
  .listed-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .listed-process-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
  }
  
  .listed-process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #ff8a1d);
  }
  
  .listed-process-step {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto 20px;
  }
  
  /* CTA Section */
  .listed-cta {
    padding: 100px 0;
    margin: 0 80px;
    border-radius: 32px;
  }
  
  .listed-cta h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
  }
  
  .listed-cta-btn {
    padding: 20px 48px;
    font-size: 1.125rem;
    border-radius: 100px;
  }
}

/* Extra Large Screens */
@media (min-width: 1440px) {
  .listed-hero-container {
    padding: 0 120px;
  }
  
  .listed-hero-title {
    font-size: 5.5rem;
  }
  
  .listed-fit-grid,
  .listed-req-grid {
    gap: 40px;
  }
  
  .listed-fit-card {
    padding: 56px 44px;
  }
}
