/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================
   NAVIGATION SECTION
   ============================================ */

#mainNav {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #06b6d4;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-link {
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #06b6d4;
}

.nav-auth-btn {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-auth-btn:hover {
    color: #06b6d4;
}

.btn-rounded {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(255, 255, 255, 1) 100%);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background-color: white;
    border-radius: 50px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.trust-badge i {
    color: #06b6d4;
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}



.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-hover:hover {
    transform: scale(1.05);
}

.btn-outline-primary {
    border: 2px solid #e5e7eb;
    color: #4b5563;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    border-color: #06b6d4;
    color: #06b6d4;
    background-color: transparent;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0.6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1.25rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #6b7280;
    margin-bottom: 1rem;
}

.step-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.icon-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
}

.step-icon i {
    color: white;
    font-size: 2.5rem;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background-color: #06b6d4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 0;
    background-color: #f9fafb;
}

.feature-card {
    padding: 2rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

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

/* ============================================
   USE CASES SECTION
   ============================================ */

.use-cases-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.use-case-card {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}

.card-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.card-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.card-orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.card-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(244, 63, 94, 0.05) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-cyan .use-case-icon i {
    color: #06b6d4;
    font-size: 1.5rem;
}

.card-blue .use-case-icon i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.card-indigo .use-case-icon i {
    color: #6366f1;
    font-size: 1.5rem;
}

.card-green .use-case-icon i {
    color: #10b981;
    font-size: 1.5rem;
}

.card-orange .use-case-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.card-pink .use-case-icon i {
    color: #ec4899;
    font-size: 1.5rem;
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.use-case-description {
    color: #4b5563;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.testimonial-card {
    padding: 2rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #4b5563;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(99, 102, 241, 0.05) 100%);
}

.pricing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.pricing-features {
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #10b981;
    margin: 0 0.5rem;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #06b6d4;
    color: white;
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .how-it-works-section,
    .features-section,
    .use-cases-section,
    .testimonials-section,
    .pricing-section {
        padding: 60px 0;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: none;
}

/* ============================================
   PAGE HEADER SECTION
   ============================================ */

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   QUICK OVERVIEW SECTION (Home)
   ============================================ */

.quick-overview-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.overview-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.overview-icon i {
    color: white;
    font-size: 2rem;
}

.overview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.overview-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(99, 102, 241, 0.05) 100%);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   HOW IT WORKS - DETAILED STEPS
   ============================================ */

.step-content {
    padding: 2rem 0;
}

.step-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-main-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-features i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.step-icon-large {
    width: 200px;
    height: 200px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.step-icon-large i {
    color: white;
    font-size: 6rem;
}

/* Benefits Cards */
.benefits-section {
    background-color: #f9fafb;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.75rem;
}

.benefit-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   USE CASES - EXAMPLES LIST
   ============================================ */

.use-case-examples {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.use-case-examples li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.use-case-examples li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-cards-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #06b6d4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #06b6d4;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.25rem;
}

.plan-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features i.bi-check-circle-fill {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.plan-features i.bi-x-circle {
    color: #d1d5db;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background-color: #f9fafb;
}

.accordion-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #1f2937;
    background-color: white;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f9fafb;
    color: #06b6d4;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #06b6d4;
}

.accordion-body {
    padding: 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   AUTH PAGES STYLES
   ============================================ */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.auth-icon i {
    color: white;
    font-size: 2.5rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.auth-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.auth-form {
    margin-top: 2rem;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.125rem;
}

.input-with-icon .form-control {
    padding-left: 3rem;
    padding-right: 3rem;
    height: 48px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #06b6d4;
}

.auth-link {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #0891b2;
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.auth-divider span {
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #06b6d4;
    background-color: rgba(6, 182, 212, 0.05);
}

.social-btn i {
    font-size: 1.25rem;
}

.auth-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.auth-footer p {
    color: #6b7280;
    margin: 0;
}

.password-strength {
    margin-top: 0.5rem;
    color: red;
}

/* OTP Input Styles */
.otp-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.otp-input {
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

/* Password Requirements */
.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements .requirement {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.password-requirements .requirement::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.password-requirements .requirement.met::before {
    content: '✓';
    color: #10b981;
}

/* ============================================
   MOBILE RESPONSIVE ADDITIONS
   ============================================ */

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .step-content {
        padding: 1rem 0;
    }
    
    .step-main-title {
        font-size: 1.5rem;
    }
    
    .step-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .step-icon-large i {
        font-size: 4rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .auth-card {
        padding: 2rem 1.5rem;
    }
    
    .auth-title {
        font-size: 1.75rem;
    }
    
    .social-auth {
        grid-template-columns: 1fr;
    }
    
    .otp-container {
        gap: 0.5rem;
    }
    
    .otp-input {
        height: 50px;
        font-size: 1.25rem;
    }
}