/* Subscription Page Styles */

/* Navigation styles removed - now using standard navigation from main.css */

/* Mobile navigation styles removed - now using standard navigation from main.css */



/* Hero Section */
.subscription-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 35%;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 25%;
    left: 90%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 5%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    top: 45%;
    left: 80%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    top: 10%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.8;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981, #059669);
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.gradient-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    top: 60%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.4;
    }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
    animation: dataStream 10s linear infinite;
}

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

/* Ensure proper hero layout */
.subscription-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 600px; /* Ensure minimum height */
}

.subscription-hero .hero-content {
    max-width: 600px;
    z-index: 3; /* Ensure content is above background */
}

.subscription-hero .hero-visual {
    display: flex !important;
    justify-content: center;
    align-items: center;
    animation-delay: 1.4s;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 3; /* Ensure visual is above background */
    position: relative; /* Ensure proper positioning */
}

.subscription-hero .gradient-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(30px);
    animation: slideLeft 1s ease-out forwards;
}

/* Enhanced animations */
.animate-bounce-in {
    opacity: 0;
    transform: scale(0.8);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Typewriter Animation */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid #3b82f6;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #3b82f6; }
}

/* Hero badge styles now use universal styles from main.css */
/* Special override for subscription page to ensure visibility */
.subscription-hero .hero-badge {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 250, 252, 0.95) 25%, 
        rgba(255, 255, 255, 0.98) 50%, 
        rgba(241, 245, 249, 0.95) 75%, 
        rgba(255, 255, 255, 0.98) 100%);
    color: var(--primary-color);
    border: 2px solid rgba(30, 64, 175, 0.4);
    box-shadow: 
        0 0 30px rgba(30, 64, 175, 0.2),
        0 8px 32px rgba(30, 64, 175, 0.15),
        0 4px 16px rgba(5, 150, 105, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.subscription-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    animation-delay: 0.4s;
}

.subscription-hero .hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    animation-delay: 0.6s;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation-delay: 0.8s;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #475569;
    font-weight: 500;
}

.feature-item i {
    color: #3b82f6;
    margin-right: var(--spacing-sm);
    font-size: 1.125rem;
}

.subscription-hero .hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    justify-content: flex-start; /* Left align the buttons */
}

.subscription-hero .btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.subscription-hero .btn:hover::before {
    left: 100%;
}

.subscription-hero .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.subscription-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.subscription-hero .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.subscription-hero .btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.subscription-hero .btn i {
    margin-right: var(--spacing-sm);
}

.subscription-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    animation-delay: 1.2s;
}

.subscription-hero .stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.subscription-hero .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.subscription-hero .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 1.25rem;
}

.subscription-hero .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.subscription-hero .stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Ensure preview card is visible and properly sized */
.preview-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(20px);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
    animation: cardFloat 6s ease-in-out infinite;
    min-width: 280px;
    max-width: 400px;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.preview-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@keyframes cardFloat {
    0%, 100% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: rotateY(-3deg) rotateX(3deg) translateY(-10px);
    }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 600;
}

.header-left i {
    margin-right: var(--spacing-sm);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #10b981;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s ease-in-out infinite;
}

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

.preview-content {
    margin-bottom: var(--spacing-lg);
}

.stock-ticker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stock-ticker:hover {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    padding: var(--spacing-sm);
    margin: 0 calc(-1 * var(--spacing-sm));
}

.ticker-left {
    display: flex;
    flex-direction: column;
}

.stock-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.stock-symbol {
    font-size: 0.75rem;
    color: #64748b;
}

.ticker-right {
    text-align: right;
}

.stock-price {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.stock-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-change.positive {
    color: #10b981;
}

.stock-change.negative {
    color: #ef4444;
}

.preview-footer {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.market-indicator {
    text-align: center;
}

.indicator-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
}

.indicator-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.indicator-value.positive {
    color: #10b981;
}

.indicator-value.negative {
    color: #ef4444;
}

/* Features Section - Simple and Clean */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    z-index: -1;
}

.features .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.features .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-lg);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-2xl);
    color: white;
    box-shadow: var(--shadow-md);
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-base);
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0;
    flex-grow: 1;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 197, 253, 0.03) 50%, rgba(191, 219, 254, 0.03) 100%);
    pointer-events: none;
}

.pricing .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.pricing .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing .section-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
}

.pricing-toggle span {
    font-weight: 600;
    color: #475569;
    font-size: 1rem;
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: var(--spacing-sm);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    z-index: 10;
    cursor: pointer;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    z-index: 11;
    cursor: pointer;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e1;
    transition: 0.3s;
    border-radius: 30px;
    z-index: 9;
    pointer-events: none;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

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

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transform: translateY(0);
    animation: cardSlideIn 0.6s ease-out;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    z-index: 3;
}

.pricing-card.featured .plan-header {
    margin-top: var(--spacing-lg);
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.plan-price {
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 600;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-description {
    color: #64748b;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
}

.plan-features {
    margin-bottom: var(--spacing-xl);
}

.plan-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.plan-features .feature:hover {
    transform: translateX(5px);
    color: #3b82f6;
}

.plan-features .feature i {
    color: #10b981;
    margin-right: var(--spacing-md);
    font-size: 1rem;
    width: 50px;
    text-align: center;
}

.plan-features .feature span {
    color: #475569;
    font-weight: 500;
    font-size: 0.875rem;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.subscribe-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* FAQ Section - Clean and Simple */
.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}

.faq .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #1e293b, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq .section-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-grid {
    max-width: 800px;
    margin: var(--spacing-3xl) auto 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all var(--transition-normal);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-question {
    padding: var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(30, 64, 175, 0.05);
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
    font-size: var(--font-size-lg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size-base);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    position: relative;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.modal-header {
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
}

.modal-body {
    padding: var(--spacing-xl);
}

.plan-summary {
    background: rgba(30, 64, 175, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.plan-summary h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.plan-summary p {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(30, 64, 175, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.card-input {
    position: relative;
}

.card-input input {
    padding-right: var(--spacing-2xl);
}

.card-input i {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    margin-top: var(--spacing-lg);
}

/* New Subscription Plans Section */
.new-subscription-plans {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
}

.new-subscription-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 50%, rgba(191, 219, 254, 0.05) 100%);
    pointer-events: none;
}

.new-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
    animation: fadeInUp 0.8s ease-out;
}

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

.new-plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    animation: cardSlideIn 0.6s ease-out;
}

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

.new-plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.new-plan-card:nth-child(1) {
    animation-delay: 0.1s;
}

.new-plan-card:nth-child(2) {
    animation-delay: 0.2s;
}

.new-plan-card:nth-child(3) {
    animation-delay: 0.3s;
}

.new-plan-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.new-plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.new-plan-card.featured:hover::before {
    transform: scaleX(1);
}

.new-plan-card.featured:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
}

.new-plan-card .plan-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.new-plan-card .plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.new-plan-card .plan-price {
    margin-bottom: var(--spacing-lg);
}

.original-price {
    font-size: 1.25rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.price-option {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.period-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.new-plan-card .plan-description {
    color: #6b7280;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.plan-categories,
.plan-includes,
.plan-features,
.optional-addons {
    margin-bottom: var(--spacing-xl);
}

.plan-categories h4,
.plan-includes h4,
.plan-features h4,
.optional-addons h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.plan-categories ul,
.plan-includes ul,
.plan-features ul,
.optional-addons ul {
    list-style: none;
    padding: 0;
}

.plan-categories li,
.plan-includes li,
.plan-features li,
.optional-addons li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: #4b5563;
}

.plan-categories li i,
.plan-includes li i,
.plan-features li i,
.optional-addons li i {
    color: #10b981;
    margin-right: var(--spacing-sm);
    font-size: 0.875rem;
}

.rebalancing-options h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.rebalancing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.rebalancing-option {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.rebalancing-option .period {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.rebalancing-option .price {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.rebalancing-option .save {
    display: block;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

/* Mentorship Programs Section */
.mentorship-programs {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    position: relative;
}

.mentorship-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 50%, rgba(191, 219, 254, 0.1) 100%);
    pointer-events: none;
}

.mentorship-programs .section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.mentorship-programs .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.mentorship-programs .section-subtitle {
    color: #cbd5e1;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.mentorship-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    animation: cardSlideIn 0.6s ease-out;
}

.mentorship-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mentorship-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mentorship-card:nth-child(3) {
    animation-delay: 0.3s;
}

.mentorship-card:nth-child(4) {
    animation-delay: 0.4s;
}

.mentorship-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.mentorship-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.mentorship-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mentorship-card.featured:hover::before {
    transform: scaleX(1);
}

.mentorship-card.featured:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.mentorship-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mentorship-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.mentorship-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.mentorship-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
}

.mentorship-content {
    margin-bottom: var(--spacing-xl);
}

.mentorship-description {
    color: #e2e8f0;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.mentorship-features h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-md);
}

.mentorship-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
}

.mentorship-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: #cbd5e1;
}

.mentorship-features li i {
    color: #fbbf24;
    margin-right: var(--spacing-sm);
    font-size: 0.875rem;
}

.mentorship-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    color: #cbd5e1;
}

.detail-item i {
    margin-right: var(--spacing-sm);
    color: #3b82f6;
}

.mentorship-pricing {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.mentorship-pricing .original-price {
    font-size: 1.125rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.mentorship-pricing .discounted-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.mentorship-pricing .discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive Design for New Sections */
@media (max-width: 1023px) {
    .new-plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .rebalancing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 767px) {
    .new-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .mentorship-details {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .new-plan-card,
    .mentorship-card {
        padding: var(--spacing-xl);
    }
    
    .new-plan-card .plan-header h3,
    .mentorship-header h3 {
        font-size: 1.25rem;
    }
    
    .discounted-price {
        font-size: 1.5rem;
    }
    
    .mentorship-pricing .discounted-price {
        font-size: 1.5rem;
    }
    
    /* Additional responsive improvements for other sections */
    .features {
        padding: var(--spacing-2xl) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-lg);
    }
    
    .pricing {
        padding: var(--spacing-2xl) 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-lg);
    }
    
    .finhub-services {
        padding: var(--spacing-2xl) 0;
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-lg);
    }
}

@media (max-width: 600px) {
    .new-plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .subscription-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 479px) {
    .new-plan-card,
    .mentorship-card {
        padding: var(--spacing-lg);
    }
    
    .new-plan-card .plan-header h3,
    .mentorship-header h3 {
        font-size: 1.125rem;
    }
    
    .discounted-price {
        font-size: 1.25rem;
    }
    
    .mentorship-pricing .discounted-price {
        font-size: 1.25rem;
    }
    
    .plan-categories h4,
    .plan-includes h4,
    .plan-features h4,
    .optional-addons h4,
    .mentorship-features h4 {
        font-size: 1rem;
    }
}



/* Responsive Design */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .subscription-hero {
        margin-top: 100px; /* Account for fixed navbar */
        padding: var(--spacing-5xl) 0;
    }
    
    .subscription-hero .container {
        padding: 0 var(--spacing-3xl);
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-5xl);
        line-height: 1.1;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-xl);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-features {
        max-width: 800px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .subscription-hero .hero-cta {
        max-width: 700px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .subscription-hero .hero-stats {
        max-width: 800px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
    .subscription-hero {
        margin-top: 100px; /* Account for fixed navbar */
        padding: var(--spacing-3xl) 0;
    }
    
    .subscription-hero .container {
        padding: 0 var(--spacing-2xl);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-4xl);
        line-height: 1.1;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-description {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-features {
        max-width: 700px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .subscription-hero .hero-cta {
        max-width: 600px;
        margin: 0 auto;
        justify-content: flex-start;
    }
    
    .subscription-hero .hero-stats {
        max-width: 700px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .subscription-hero {
        margin-top: 100px; /* Account for fixed navbar */
        padding: var(--spacing-3xl) 0;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr 1fr; /* Keep two columns on tablet */
        text-align: left; /* Keep left alignment */
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-xl);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-description {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-features {
        max-width: 600px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .subscription-hero .hero-cta {
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .subscription-hero .hero-stats {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}

/* Mobile Large (480px - 767px) */
@media (max-width: 767px) and (min-width: 480px) {
    .subscription-hero {
        margin-top: 100px; /* Account for fixed navbar */
        padding: var(--spacing-3xl) 0;
        min-height: auto;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr 1fr; /* Keep two columns on mobile large */
        text-align: left; /* Keep left alignment */
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-lg);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-base);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-features {
        flex-direction: column;
        gap: var(--spacing-md);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        max-width: 300px;
        margin: 0 auto;
    }
    
    .subscription-hero .stat {
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-toggle {
        flex-direction: row;
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-base);
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .subscription-hero {
        margin-top: 100px; /* Account for fixed navbar */
        padding: var(--spacing-2xl) 0;
        min-height: auto;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr 1fr; /* Keep two columns on small mobile */
        text-align: left; /* Keep left alignment */
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-xl);
        line-height: 1.3;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-sm);
        max-width: 100%;
    }
    
    .subscription-hero .hero-badge {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .subscription-hero .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .subscription-hero .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .subscription-hero .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .subscription-hero .stat {
        padding: var(--spacing-md);
    }
    
    .subscription-hero .stat-number {
        font-size: var(--font-size-xl);
    }
    
    .subscription-hero .stat-label {
        font-size: var(--font-size-xs);
    }
    
    /* Additional responsive improvements for other sections */
    .features {
        padding: var(--spacing-xl) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .pricing {
        padding: var(--spacing-xl) 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .finhub-services {
        padding: var(--spacing-xl) 0;
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .preview-card {
        padding: var(--spacing-md);
        max-width: 100%;
        transform: rotateY(0deg) rotateX(0deg); /* Remove 3D transform on small screens */
    }
    
    .stock-ticker {
        padding: var(--spacing-sm);
    }
    
    .stock-name {
        font-size: var(--font-size-xs);
    }
    
    .stock-price {
        font-size: var(--font-size-base);
    }
    
    .stock-change {
        font-size: var(--font-size-xs);
    }
    
    .features {
        padding: var(--spacing-2xl) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        padding: var(--spacing-xl);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xl);
    }
    
    .feature-card h3 {
        font-size: var(--font-size-lg);
    }
    
    .feature-card p {
        font-size: var(--font-size-sm);
    }
    
    .pricing {
        padding: var(--spacing-2xl) 0;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .pricing-toggle span {
        font-size: var(--font-size-base);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card {
        padding: var(--spacing-xl);
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .plan-header h3 {
        font-size: var(--font-size-xl);
    }
    
    .plan-price .amount {
        font-size: var(--font-size-2xl);
    }
    
    .plan-price .currency {
        font-size: var(--font-size-base);
    }
    
    .plan-price .period {
        font-size: var(--font-size-base);
    }
    
    .plan-features .feature {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs);
    }
    
    .subscribe-btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    .faq {
        padding: var(--spacing-2xl) 0;
    }
    
    .faq-question h3 {
        font-size: var(--font-size-sm);
    }
    
    .faq-answer p {
        font-size: var(--font-size-sm);
    }
    
    .cta-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .cta-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .cta-content p {
        font-size: var(--font-size-base);
    }
    
    .modal-content {
        width: 95%;
        margin: var(--spacing-md);
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: var(--spacing-lg);
    }
    
    .modal-body {
        padding: var(--spacing-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input {
        padding: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
    
    .btn-full {
        padding: var(--spacing-md);
        font-size: var(--font-size-base);
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .subscription-hero {
        padding: var(--spacing-xl) 0;
    }
    
    .subscription-hero .container {
        padding: 0 var(--spacing-sm);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-lg);
        line-height: 1.2;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-xs);
        max-width: 100%;
    }
    
    .subscription-hero .hero-features {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .subscription-hero .hero-cta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .subscription-hero .hero-stats {
        gap: var(--spacing-sm);
        flex-direction: column;
    }
    
    .subscription-hero .stat {
        padding: var(--spacing-sm);
    }
    
    .subscription-hero .stat-number {
        font-size: var(--font-size-lg);
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
    }
    
    .plan-price .amount {
        font-size: var(--font-size-xl);
    }
    
    .subscribe-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    /* Additional responsive improvements for other sections */
    .features {
        padding: var(--spacing-lg) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .pricing {
        padding: var(--spacing-lg) 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .finhub-services {
        padding: var(--spacing-lg) 0;
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .subscription-hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .subscription-hero .container {
        padding: 0 var(--spacing-lg);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-lg);
        line-height: 1.2;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-sm);
        max-width: 100%;
    }
    
    .subscription-hero .hero-features {
        flex-direction: row;
        gap: var(--spacing-sm);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .subscription-hero .hero-cta {
        flex-direction: row;
        gap: var(--spacing-sm);
        justify-content: center;
    }
    
    .subscription-hero .hero-stats {
        flex-direction: row;
        gap: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .subscription-hero .stat {
        padding: var(--spacing-sm);
        min-width: 120px;
    }
    
    .subscription-hero .stat-number {
        font-size: var(--font-size-lg);
    }
    
    .subscription-hero .stat-label {
        font-size: var(--font-size-xs);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .subscription-hero .hero-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .subscription-hero .hero-badge,
    .preview-card,
    .feature-card,
    .pricing-card,
    .subscribe-btn,
    .stock-ticker,
    .plan-features .feature {
        animation: none;
        transition: none;
    }
    
    .subscription-hero .hero-badge:hover,
    .preview-card:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .subscribe-btn:hover,
    .stock-ticker:hover,
    .plan-features .feature:hover {
        transform: none;
    }
} 

/* Additional Animations and Effects */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.pricing-card {
    position: relative;
    overflow: hidden;
}

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

.pricing-card:hover::after {
    left: 100%;
}

/* Floating animation for stats */
.subscription-hero .stat {
    animation: float 6s ease-in-out infinite;
}

.subscription-hero .stat:nth-child(1) {
    animation-delay: 0s;
}

.subscription-hero .stat:nth-child(2) {
    animation-delay: 1s;
}

.subscription-hero .stat:nth-child(3) {
    animation-delay: 2s;
}

.subscription-hero .stat:nth-child(4) {
    animation-delay: 3s;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Gradient text animation */
.gradient-text {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced particle effects */
.particle {
    filter: blur(0.5px);
}

.particle:nth-child(odd) {
    animation: float 8s ease-in-out infinite, glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

/* Card tilt effect */
.preview-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.preview-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced focus states */
.btn:focus,
.subscribe-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Enhanced card interactions */
.new-plan-card,
.mentorship-card,
.pricing-card {
    cursor: pointer;
}

.new-plan-card:focus,
.mentorship-card:focus,
.pricing-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* Enhanced loading states */
.btn.loading,
.subscribe-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after,
.subscribe-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FinHub Services Section */
.finhub-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.finhub-services .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.finhub-services .section-title {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
}

.finhub-services .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.finhub-services .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.finhub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.finhub-service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.finhub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
}

.finhub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 64, 175, 0.2);
}

.finhub-service-card.premium {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border: 2px solid #fbbf24;
    position: relative;
    overflow: hidden;
}

.finhub-service-card.premium::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.finhub-service-card.premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    animation: rotate 4s linear infinite;
    z-index: 1;
}

.finhub-service-card.premium .service-icon,
.finhub-service-card.premium .service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 2rem;
}

.finhub-service-card.premium .service-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.finhub-service-card.premium .service-content h3 {
    color: white;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.finhub-service-card.premium .service-description {
    color: rgba(255, 255, 255, 0.8);
}

.service-features,
.service-includes {
    margin-bottom: 24px;
}

.service-features h4,
.service-includes h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.finhub-service-card.premium .service-features h4,
.finhub-service-card.premium .service-includes h4 {
    color: white;
}

.service-features ul,
.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-features li,
.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.finhub-service-card.premium .service-features li,
.finhub-service-card.premium .service-includes li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features i,
.service-includes i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.finhub-service-card.premium .service-features i,
.finhub-service-card.premium .service-includes i {
    color: #fbbf24;
}

/* Pricing Toggle */
.service-pricing {
    margin-bottom: 32px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #3b82f6;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.finhub-service-card.premium .toggle-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Options */
.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pricing-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-option.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pricing-option:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.pricing-option .period {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-option .price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-option .per-month {
    font-size: 0.75rem;
    opacity: 0.8;
}

.save-badge {
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 8px;
    display: inline-block;
}

/* Subscribe Button */
.finhub-service-card .subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.finhub-service-card .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.finhub-service-card .subscribe-btn.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
}

.finhub-service-card .subscribe-btn.premium:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .finhub-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .finhub-services {
        padding: 60px 0;
    }
    
    .finhub-services .section-title {
        font-size: 2rem;
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .finhub-service-card {
        padding: 30px 20px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .finhub-services .section-title {
        font-size: 1.75rem;
    }
    
    .finhub-service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* All sections are now properly styled */ 

.subscription-preview {
    position: relative;
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
} 

/* FAQ section is now clean and simple */

/* Responsive breakpoints for features section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-xl);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-size-xl);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1025px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
}

/* Hide hero-visual on smaller devices */
@media (max-width: 1024px) {
    .subscription-hero .hero-visual {
        display: none !important;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .subscription-hero .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-cta {
        justify-content: center;
        margin: 0 auto;
    }
}

/* Comprehensive Responsive Design for Subscription Page */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .subscription-hero .container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
        max-width: 1400px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .new-plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .finhub-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }
}

/* Desktop (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .subscription-hero .container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-xl);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    .new-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .finhub-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .subscription-hero .hero-visual {
        display: none !important;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-xl);
    }
    
    .subscription-hero .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-cta {
        justify-content: center;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .new-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .finhub-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .faq-grid {
        max-width: 700px;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .subscription-hero .hero-visual {
        display: none !important;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-lg);
    }
    
    .subscription-hero .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-base);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card.featured {
        grid-column: span 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .new-plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .faq-grid {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
}

/* Mobile Large (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .subscription-hero .hero-visual {
        display: none !important;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .subscription-hero .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-sm);
    }
    
    .subscription-hero .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .subscription-hero .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .pricing-card {
        padding: var(--spacing-xl);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .new-plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .finhub-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .faq-grid {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .faq-item {
        margin-bottom: var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
    .subscription-hero .hero-visual {
        display: none !important;
    }
    
    .subscription-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .subscription-hero .hero-title {
        font-size: var(--font-size-xl);
        line-height: 1.3;
    }
    
    .subscription-hero .hero-description {
        font-size: var(--font-size-xs);
    }
    
    .pricing-grid,
    .features-grid,
    .new-plans-grid,
    .finhub-services-grid,
    .mentorship-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .pricing-card,
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: var(--font-size-lg);
    }
    
    .section-subtitle {
        font-size: var(--font-size-xs);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* General responsive improvements */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .pricing-toggle span {
        font-size: var(--font-size-sm);
    }
    
    .save-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .switch {
        width: 50px;
        height: 25px;
    }
    
    .slider:before {
        height: 19px;
        width: 19px;
    }
    
    input:checked + .slider:before {
        transform: translateX(25px);
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn,
    .subscribe-btn,
    .faq-question {
        min-height: 44px;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}







