/* Reseller Program Styles - Youth-focused Design */
/* ============================================== */

:root {
    /* Extended color palette for reseller page */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-success: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    
    /* Youth-focused colors */
    --electric-blue: #06b6d4;
    --neon-purple: #a855f7;
    --vibrant-green: #22c55e;
    --sunset-orange: #f97316;
    --hot-pink: #ec4899;
    
    /* Special effects */
    --glow-primary: 0 0 30px rgba(99, 102, 241, 0.3);
    --glow-secondary: 0 0 30px rgba(6, 182, 212, 0.3);
    --shadow-floating: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  /* Global Styles */
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .scroll-smooth {
    scroll-behavior: smooth;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite alternate;
  }
  
  @keyframes particleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
  }
  
  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-floating);
    border: none;
    cursor: pointer;
  }
  
  .btn-primary-gradient:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary), var(--shadow-floating);
  }
  
  .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .btn-outline-primary:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }
  
  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn-outline-white:hover {
    color: var(--primary-color);
    background: white;
    transform: translateY(-2px);
  }
  
  /* Hero Visual */
  .hero-visual {
    position: relative;
    height: 500px;
  }
  
  .success-cards {
    position: relative;
    height: 100%;
  }
  
  .success-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 140px;
    animation: float 6s ease-in-out infinite;
  }
  
  .success-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .success-card:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
  }
  
  .success-card:nth-child(3) {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
  }
  
  .floating {
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .card-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }
  
  .card-label {
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  .hero-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 200px;
    opacity: 0.8;
  }
  
  .chart-container {
    width: 100%;
    height: 100%;
  }
  
  .success-chart {
    width: 100%;
    height: 100%;
  }
  
  .chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease forwards;
  }
  
  .chart-area {
    opacity: 0;
    animation: fillArea 2s ease 1s forwards;
  }
  
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }
  
  @keyframes fillArea {
    to { opacity: 1; }
  }
  
  /* Quick Stats Section */
  .quick-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
   
    margin: 0 auto;
  }
  
  .stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .stat-card:hover::before {
    opacity: 0.05;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
  }
  
  .stat-card > * {
    position: relative;
    z-index: 1;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
  }
  
  .stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
    line-height: 1;
  }
  
  .stat-content .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-top: 0.5rem;
  }
  
  /* Section Styles */
  .section-header {
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Why Choose Section */
  .why-choose-section {
    padding: 6rem 0;
    background: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .feature-card:hover::before {
    opacity: 0.03;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-floating);
  }
  
  .feature-card > * {
    position: relative;
    z-index: 1;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-primary);
  }
  
  .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }
  
  .feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .feature-highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
  }
  
  .highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
  }
  
  /* How It Works Section */
  .how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .steps-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
  }
  
  .step-visual {
    flex-shrink: 0;
    position: relative;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }
  
  .step-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .step-tip {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--gray-700);
  }
  
  .step-arrow {
    text-align: center;
    margin: 1rem 0;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.6;
  }
  
  /* Commission Tiers Section */
  .commission-section {
    padding: 6rem 0;
    background: white;
  }
  
  .tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tier-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .tier-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-floating);
  }
  
  .tier-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 0;
  }
  
  .tier-card > * {
    position: relative;
    z-index: 1;
  }
  
  .tier-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .popular-badge {
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
  }
  
  .tier-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }
  
  .tier-commission {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  
  .commission-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  
  .commission-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .tier-subtitle {
    color: var(--gray-600);
    font-weight: 600;
  }
  
  .tier-stats {
    margin-bottom: 2rem;
  }
  
  .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  }
  
  .stat:last-child {
    border-bottom: none;
  }
  
  .stat-label {
    color: var(--gray-600);
    font-weight: 500;
  }
  
  .stat-value {
    font-weight: 700;
    color: var(--gray-900);
  }
  
  .tier-features {
    space-y: 0.75rem;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .feature i {
    color: var(--vibrant-green);
    font-size: 1.1rem;
  }
  
  .feature span {
    color: var(--gray-700);
  }
  
  /* Success Stories Section */
  .success-stories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .story-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
  }
  
  .story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
  }
  
  .story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
  }
  
  .story-info {
    flex: 1;
  }
  
  .story-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
  }
  
  .story-location {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .story-tier {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
  }
  
  .story-earnings {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
  }
  
  .earnings-amount {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  
  .earnings-period {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
  }
  
  .story-quote {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
  }
  
  .story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .story-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    border: none;
  }
  
  .story-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }
  
  .story-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
  }
  
  /* Resources Section */
  .resources-section {
    padding: 6rem 0;
    background: white;
  }
  
  .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .resource-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
  }
  
  .resource-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .resource-card:hover .resource-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-secondary);
  }
  
  .resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }
  
  .resource-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .resource-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .preview-item {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-floating);
  }
  
  .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .faq-question:hover {
    color: var(--primary-color);
  }
  
  .faq-question[aria-expanded="true"] {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
  }
  
  .faq-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer.show {
    max-height: 200px;
  }
  
  .faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
  }
  
  /* Application Section */
  .application-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
  }
  
  .application-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-floating);
  }
  
  .application-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .application-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .application-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .form-group-full {
    grid-column: 1 / -1;
  }
  
  .form-group {
    margin-bottom: 0;
  }
  
  .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
  }
  
  .form-control,
  .form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .form-control:focus,
  .form-select:focus {
    outline: none;
    border-color: var(--electric-blue);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
  }
  
  .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .checkbox-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .checkbox-item input[type="checkbox"] {
    display: none;
  }
  
  .checkbox-item input[type="checkbox"]:checked + .checkmark + i,
  .checkbox-item input[type="checkbox"]:checked ~ * {
    color: var(--electric-blue);
  }
  
  .checkbox-item input[type="checkbox"]:checked ~ .checkbox-item {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--electric-blue);
  }
  
  .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--electric-blue);
    border-color: var(--electric-blue);
  }
  
  .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
  }
  
  .form-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
  }
  
  .form-check {
    margin-bottom: 2rem;
  }
  
  .form-check-input {
    margin-right: 0.75rem;
  }
  
  .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }
  
  .form-check-label a {
    color: var(--electric-blue);
    text-decoration: underline;
  }
  
  .submit-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-floating);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary), var(--shadow-floating);
  }
  
  .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }
  
  .btn-loading {
    display: none;
  }
  
  .submit-btn.loading .btn-text {
    display: none;
  }
  
  .submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .form-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  
  .cta-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-section {
      min-height: 80vh;
      padding: 2rem 0;
    }
    
    .hero-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-primary-gradient,
    .btn-outline-primary {
      width: 100%;
      max-width: 280px;
      justify-content: center;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .tiers-container,
    .stories-grid,
    .resources-grid {
      grid-template-columns: 1fr;
    }
    
    .tier-card.popular {
      transform: none;
    }
    
    .step-item {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    
    .story-stats {
      grid-template-columns: 1fr;
    }
    
    .checkbox-group {
      grid-template-columns: 1fr;
    }
    
    .form-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .hero-visual {
      height: 300px;
      margin-top: 3rem;
    }
    
    .success-card {
      position: relative !important;
      margin-bottom: 1rem;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
    }
    
    .hero-illustration {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .application-card {
      padding: 2rem 1.5rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-stats {
      justify-content: center;
      gap: 1rem;
    }
    
    .tier-commission .commission-number {
      font-size: 3rem;
    }
    
    .earnings-amount {
      font-size: 1.5rem;
    }
  }
  
  /* Animation utilities */
  .counter {
    transition: all 0.3s ease;
  }
  
  /* Loading states */
  .loading-state {
    opacity: 0.7;
    pointer-events: none;
  }
  
  /* Accessibility improvements */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  
  /* Focus styles for better accessibility */
  .btn-primary-gradient:focus,
  .btn-outline-primary:focus,
  .form-control:focus,
  .form-select:focus,
  .faq-question:focus {
    outline: 2px solid var(--electric-blue);
    outline-offset: 2px;
  }
  
  /* Print styles */
  @media print {
    .hero-background,
    .application-section,
    .cta-banner {
      background: white !important;
      color: black !important;
    }
    
    .hero-particles,
    .floating {
      display: none;
    }
  }