/* Castle Capital Pricing Page Styles */

:root {
    /* Castle Capital Color Palette */
    --castle-navy: #1B2A41;
    --castle-gold: #C9A74E;
    --castle-beige: #E5D7C0;
    --castle-white: #FFFFFF;
    
    /* Extended Palette for Effects */
    --castle-navy-dark: #0f1a2a;
    --castle-navy-light: #2a3951;
    --castle-gold-light: #d4b863;
    --castle-beige-light: #f0e6d5;
    
    /* Glass Morphism Values */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);
    
    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 16px 64px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 12px 40px rgba(201, 167, 78, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--castle-navy) 0%, var(--castle-navy-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--castle-gold) 0%, var(--castle-gold-light) 100%);
    --gradient-hero: radial-gradient(circle at 20% 20%, rgba(201, 167, 78, 0.1) 0%, transparent 50%), 
                     radial-gradient(circle at 80% 80%, rgba(229, 215, 192, 0.05) 0%, transparent 50%),
                     linear-gradient(135deg, var(--castle-navy) 0%, var(--castle-navy-dark) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background: var(--gradient-primary);
    color: var(--castle-white);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: var(--glass-backdrop);
    background: rgba(27, 42, 65, 0.9);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(27, 42, 65, 0.95);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--castle-gold);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--castle-white);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--castle-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-client-portal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--castle-white);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: var(--glass-backdrop);
    transition: all 0.3s ease;
}

.btn-client-portal:hover {
    background: var(--castle-gold);
    color: var(--castle-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--castle-white);
    font-size: 1.5rem;
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--castle-gold) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--castle-gold) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 167, 78, 0.1);
    border: 1px solid var(--castle-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: var(--glass-backdrop);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--castle-white) 0%, var(--castle-gold) 50%, var(--castle-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--castle-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--glass-backdrop);
    border-top: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--castle-white) 0%, var(--castle-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 1rem 2rem;
}

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

.discount-badge {
    background: var(--castle-gold);
    color: var(--castle-navy);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--castle-navy);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-switch.annual {
    background: var(--castle-gold);
}

.toggle-button {
    width: 26px;
    height: 26px;
    background: var(--castle-white);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.annual .toggle-button {
    transform: translateX(30px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform: translateY(0) scale(1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    box-shadow: var(--shadow-strong);
    border-color: var(--castle-gold);
}

/* Featured Plan Styling */
.pricing-card.featured {
    border: 2px solid var(--castle-gold);
    background: linear-gradient(145deg, var(--glass-bg), rgba(201, 167, 78, 0.05));
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

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

/* Premium Plan Styling */
.pricing-card.premium {
    border: 2px solid var(--castle-navy-light);
    background: linear-gradient(145deg, var(--glass-bg), rgba(27, 42, 65, 0.05));
}

/* Plan Badges */
.popular-badge,
.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.popular-badge {
    background: var(--castle-gold);
    color: var(--castle-navy);
}

.premium-badge {
    background: var(--castle-navy);
    color: var(--castle-white);
}

/* Card Content */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--castle-navy);
    box-shadow: var(--shadow-soft);
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--castle-white);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.card-pricing {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--castle-gold);
}

.price {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    color: var(--castle-white);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.price-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Features List */
.card-features {
    margin-bottom: 2.5rem;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li i {
    color: var(--castle-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Action Buttons */
.card-action {
    text-align: center;
}

.btn-plan {
    display: inline-block;
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-gold);
    color: var(--castle-navy);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

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

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

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--castle-navy);
    text-decoration: none;
}

.featured .btn-plan {
    background: var(--castle-navy);
    color: var(--castle-white);
}

.featured .btn-plan:hover {
    background: var(--castle-gold);
    color: var(--castle-navy);
}

.guarantee {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--glass-backdrop);
    border-top: 1px solid var(--glass-border);
}

.comparison-table {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(27, 42, 65, 0.3);
    font-weight: 700;
    color: var(--castle-white);
    font-size: 1.1rem;
}

.featured-col {
    background: rgba(201, 167, 78, 0.1);
    color: var(--castle-gold);
}

.feature-col {
    text-align: left !important;
    font-weight: 600;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--castle-white);
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.9);
}

.text-success {
    color: var(--castle-gold) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--glass-backdrop);
    border-top: 1px solid var(--glass-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--castle-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--castle-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--castle-gold);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: rgba(201, 167, 78, 0.05);
    border-top: 1px solid var(--glass-border);
}

.trust-content {
    text-align: center;
}

.trust-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--castle-white);
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--castle-gold);
}

.trust-badge i {
    font-size: 2rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--castle-white);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--castle-white);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--castle-navy);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    color: var(--castle-navy);
}

.btn-secondary {
    background: transparent;
    color: var(--castle-white);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--castle-white);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--castle-white);
    color: var(--castle-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--castle-navy-dark);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--castle-gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    color: var(--castle-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--castle-gold);
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--glass-border);
    margin: 3rem 0;
}

.footer-bottom {
    text-align: center;
}

.regulatory-notice {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(27, 42, 65, 0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up.delay-1 { transition-delay: 0.1s; }
.animate-fade-up.delay-2 { transition-delay: 0.2s; }
.animate-fade-up.delay-3 { transition-delay: 0.3s; }
.animate-fade-up.delay-4 { transition-delay: 0.4s; }
.animate-fade-up.delay-5 { transition-delay: 0.5s; }
.animate-fade-up.delay-6 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
        scale: 1;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .trust-badges {
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--castle-navy);
        backdrop-filter: var(--glass-backdrop);
        padding: 2rem;
        border-top: 1px solid var(--castle-gold);
        border-radius: 0 0 16px 16px;
        box-shadow: var(--shadow-medium);
        gap: 1rem;
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-toggler {
        display: block;
    }
    
    .hero-section {
        min-height: 70vh;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .plan-name {
        font-size: 2rem;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .regulatory-notice {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
}