/* Instagram Bio Generator - Custom Styles */

:root {
    --primary-color: #E91E63;
    --secondary-color: #FF6B35;
    --accent-color: #FFD700;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --text-muted: #6C757D;
    --border-color: #E0E0E0;
    --gradient-instagram: linear-gradient(45deg, #FF6B35, #E91E63, #9C27B0, #673AB7);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-vibrant: linear-gradient(135deg, #FF6B35 0%, #E91E63 50%, #9C27B0 100%);
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}


/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 0;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.offer-text {
    font-size: 1.1rem;
    font-weight: bold;
}

.offer-timer {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

/* Simple Highlight */
.simple-highlight {
    text-align: center;
}



/* Guarantee Badge */
.guarantee-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Social Proof Ticker */
.social-proof-ticker {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 0;
    margin-top: 15px;
    backdrop-filter: blur(10px);
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 40px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Live Counter Animation */
#biosGenerated, #todayCounter {
    animation: count-up 0.5s ease-out;
}

@keyframes count-up {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Scarcity Elements */
.scarcity-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: urgent-pulse 1.5s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { background: #dc3545; }
    50% { background: #c82333; }
}

/* Enhanced Testimonials */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
}



/* Live Activity Feed */
.live-activity {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    overflow: hidden;
}

.activity-ticker {
    display: flex;
    animation: activity-scroll 25s linear infinite;
    white-space: nowrap;
}

.activity-item {
    padding: 0 50px;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@keyframes activity-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced Signup Section */
.urgency-notice .alert {
    border: 2px solid #ffc107;
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.signup-benefits small {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin: 2px;
}

.recent-signups {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Social Proof Numbers */
.social-proof-numbers {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slide-in-right 0.5s ease-out;
}

@keyframes slide-in-right {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.social-proof-numbers.hidden {
    animation: slide-out-right 0.5s ease-out forwards;
}

@keyframes slide-out-right {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

/* Conversion Optimization */
.conversion-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    animation: bounce-in 0.5s ease-out;
    z-index: 1000;
    cursor: pointer;
}

@keyframes bounce-in {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* Exit Intent Modal */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.exit-intent-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.exit-intent-close:hover {
    color: #333;
}

.exit-intent-discount {
    background: var(--gradient-vibrant);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--gradient-vibrant);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    color: white;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    border-color: white;
}

.btn-outline-primary:focus {
    background: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* Enhanced Learn More button visibility */
.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.btn-outline-light:hover {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    text-shadow: none;
}

.btn-outline-light:focus {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Text Visibility */
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Better contrast for pricing cards */
.pricing-card .text-muted {
    color: #495057 !important;
}

.pricing-card .pricing-header .text-white-50 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Background Gradients */
.bg-gradient-primary {
    background: var(--gradient-instagram) !important;
}

.bg-gradient-light {
    background: var(--gradient-hero) !important;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(10px);
    background: var(--gradient-vibrant) !important;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-vibrant);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-stats .stat-item {
    padding: 1rem 0;
}

.hero-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.phone-screen {
    background: white;
    height: 100%;
    border-radius: 20px;
    padding: 40px 20px 20px;
    overflow: hidden;
}

.instagram-profile {
    height: 100%;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-instagram);
    flex-shrink: 0;
}

.profile-info h6 {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--dark-color);
}

.bio-preview {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--dark-color);
    margin: 0;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: var(--transition);
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-instagram);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.pricing-header {
    background: var(--gradient-vibrant);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-card.free .pricing-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-card.premium .pricing-header {
    background: linear-gradient(135deg, #6f42c1 0%, #e91e63 100%);
}

/* Improve button visibility */
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Features section styling */
.feature-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
}

.feature-card h5 {
    color: #212529 !important;
    font-weight: 600;
}

.feature-card .text-muted {
    color: #6c757d !important;
}

/* Hero section improvements */
.hero-section .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 1rem auto;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Tablet responsiveness */
@media (max-width: 992px) {
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
}

/* Ensure text is always readable */
.card-body {
    color: #212529;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Improve contrast for all sections */
section {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #495057;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
}

.price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
    margin-top: auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--dark-color);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-instagram);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.yearly-savings {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Bio Generator Styles */
.bio-option {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.bio-preview {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.bio-preview-small {
    background: white;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    min-height: 60px;
}

/* Empty States */
.empty-state {
    padding: 3rem 2rem;
}

.empty-state i {
    opacity: 0.5;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(225, 48, 108, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(225, 48, 108, 0.25);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-instagram);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #D11A5F, #C13584);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Success Page Styles */
.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-instagram);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1s ease-in-out;
}

.checkmark {
    color: white;
    font-size: 2rem;
    animation: checkmark 0.6s ease-in-out 0.3s both;
    opacity: 0;
}

.checkmark.animate {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.success-feature {
    padding: 1rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-instagram);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h6 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Cancel Page Styles */
.cancel-icon {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.feature-highlight {
    padding: 1rem;
    margin-bottom: 1rem;
}

.pricing-reminder {
    text-align: center;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-display .currency {
    font-size: 1rem;
    vertical-align: top;
}

.price-display .amount {
    font-size: 2rem;
}

.price-display .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.faq-item {
    text-align: left;
}

.faq-item h6 {
    font-weight: 600;
}

/* Dashboard Styles */
.stat-item {
    padding: 1rem 0;
}

.stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* Signup Form */
.signup-form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.signup-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-weight: 500;
}

.signup-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .signup-form .row > div {
        margin-bottom: 1rem;
    }
    
    .hero-stats .row > div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .signup-form-container {
        padding: 1rem;
    }
}

/* Utility Classes */
.min-vh-100 {
    min-height: 100vh;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(225, 48, 108, 0.05);
}

/* Modal Improvements */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    background: var(--light-color);
}

/* Alert Improvements */
.alert {
    border: none;
    border-radius: var(--border-radius);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}
