/* Enhanced UI/UX Improvements */

/* Smooth Scrolling for Navigation */
html {
    scroll-behavior: smooth;
}

/* Smooth Font Rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* About Page Specific Styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    align-items: center;
    gap: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.values-grid {
    gap: 2rem;
}

.value-card {
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.value-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    flex-grow: 1;
}

/* Team Section */
.team {
    padding: 5rem 0;
}

.team-grid {
    gap: 3rem;
}

.team-member {
    background: hsl(var(--card));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid hsl(var(--primary));
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.member-title {
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: hsl(var(--muted));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: hsl(var(--muted));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

/* History Timeline */
.history {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    min-width: 120px;
    font-weight: 700;
    color: hsl(var(--primary));
    font-size: 1.1rem;
    text-align: center;
}

.timeline-content {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: hsl(var(--primary));
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid hsl(var(--card));
    box-shadow: 0 0 0 4px hsl(var(--border));
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -31px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -31px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.timeline-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .cta-buttons .btn-lg {
    width: auto;
    flex: 0 0 auto;
}

.cta .btn-primary, .cta .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    min-width: 200px;
    justify-content: center;
}

.cta .btn-primary {
    background: hsl(var(--primary));
    color: white;
    border: 2px solid hsl(var(--primary));
    font-weight: 700;
}

.cta .btn-primary:hover {
    background: hsl(var(--primary-blue-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 2px solid hsl(var(--primary-blue-dark));
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background: white;
    color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-grid {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid {
        gap: 1.5rem;
    }
    
    .value-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .timeline-date {
        min-width: auto;
        margin-bottom: 1rem;
    }
    
    .timeline-content::before {
        left: -51px !important;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta .btn-primary,
    .cta .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* How-to-Use Page Enhanced Styles */

/* Getting Started Section */
.getting-started {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.steps-grid {
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.step-content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.step-features li {
    padding: 0.5rem 0;
    color: hsl(var(--muted-foreground));
    position: relative;
    padding-left: 1.5rem;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: 600;
}

/* Feature Guides Section */
.feature-guides {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.guide-section {
    margin-bottom: 4rem;
    background: hsl(var(--card));
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--border));
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.guide-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.guide-title p {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
}

.guide-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.guide-tab {
    padding: 0.75rem 1.5rem;
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
    border: 2px solid hsl(var(--border));
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guide-tab:hover {
    background: hsl(var(--accent));
    color: hsl(var(--foreground));
}

.guide-tab.active {
    background: hsl(var(--primary));
    color: white;
    border-color: hsl(var(--primary));
}

.guide-tab-content {
    display: none;
}

.guide-tab-content.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.content-text ol,
.content-text ul {
    margin-bottom: 2rem;
}

.content-text li {
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.content-text strong {
    color: hsl(var(--foreground));
}

.pro-tip {
    background: hsl(var(--accent));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid hsl(var(--primary));
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pro-tip i {
    color: hsl(var(--primary));
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.pro-tip strong {
    color: hsl(var(--primary));
}

.content-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--muted));
    border-radius: 12px;
    padding: 2rem;
    min-height: 300px;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Integration Categories */
.integration-categories {
    display: grid;
    gap: 3rem;
}

.integration-category {
    display: block;
}

.integration-category h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    gap: 1rem;
}

.integration-category h4 i {
    color: hsl(var(--primary));
}

.integration-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: hsl(var(--background));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.platform-icon.facebook {
    background: #1877f2;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.platform-icon.youtube {
    background: #ff0000;
}

.platform-icon.tiktok {
    background: #000000;
}

.platform-icon.linkedin {
    background: #0077b5;
}

.platform-icon.twitter {
    background: #1da1f2;
}

.integration-info h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.integration-info p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.5;
}

.setup-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.setup-link:hover {
    color: hsl(var(--primary-blue-dark));
}

/* Best Practices Section */
.best-practices {
    padding: 5rem 0;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.practice-card {
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.practice-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.practice-card ul {
    list-style: none;
    padding: 0;
}

.practice-card li {
    padding: 0.5rem 0;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.practice-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Video Tutorials Section */
.video-tutorials {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: hsl(var(--card));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: hsl(var(--primary));
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.video-info p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Help Resources Section */
.help-resources {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.help-resources .section-header h2 {
    color: white;
}

.help-resources .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.resource-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.resource-link:hover {
    background: white;
    color: hsl(var(--primary));
    transform: translateY(-2px);
    border-color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .guide-section {
        padding: 2rem 1.5rem;
    }
    
    .guide-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .guide-tabs {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-category {
        grid-template-columns: 1fr;
    }
    
    .integration-list {
        grid-template-columns: 1fr;
    }
    
    .integration-item {
        flex-direction: column;
        text-align: center;
    }
    
    .practices-grid,
    .videos-grid,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Contact Page Enhanced Styles */

/* Contact Methods Section */
.contact-methods {
    padding: 4rem 0;
    background: hsl(var(--muted));
}

.contact-grid {
    gap: 2rem;
}

.contact-card {
    background: hsl(var(--card));
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.contact-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info a {
    display: block;
    color: hsl(var(--primary));
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: hsl(var(--primary-blue-dark));
}

.btn-outline {
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover,
.btn-outline.active {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Contact Forms Section */
.contact-forms {
    padding: 5rem 0;
}

.forms-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: none;
}

.contact-form.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.form-header p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
}

.form {
    background: hsl(var(--card));
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

/* Red asterisk styling */
.form-group label .required {
    color: hsl(var(--destructive));
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsla(var(--primary), 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 3px;
    accent-color: hsl(var(--primary));
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    justify-content: center;
}


/* Office Locations */
.office-locations {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.locations-grid {
    gap: 2rem;
}

.location-card {
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.location-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.location-details p {
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.location-details i {
    color: hsl(var(--primary));
    margin-right: 0.5rem;
    width: 16px;
}

/* Support Hours */
.support-hours {
    padding: 4rem 0;
}

.support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: hsl(var(--card));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.support-content ul {
    list-style: none;
    padding: 0;
}

.support-content li {
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card,
    .location-card {
        padding: 2rem 1.5rem;
    }
    
    .form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    
    .support-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* About Page Enhanced Styles Applied */

/* Frontend Brand Color System - HSL Based */
:root {
    /* Updated Primary Brand Colors from Frontend */
    --primary: 221.2 83.2% 53.3%;           /* #3B82F6 - Main Blue */
    --primary-rgb: 59, 130, 246;
    --primary-blue: hsl(var(--primary));
    --primary-blue-light: hsl(221.2, 83.2%, 65%);
    --primary-blue-dark: hsl(221.2, 83.2%, 43%);
    
    /* Brand Colors */
    --foreground: 0 0% 11%;                 /* Dark text */
    --background: 0 0% 100%;                /* White */
    --card: 0 0% 100%;                      /* Card background */
    --secondary: 0 0% 96%;                  /* Light gray */
    --muted: 0 0% 96%;                      /* Muted background */
    --muted-foreground: 0 0% 45%;           /* Muted text */
    --accent: 0 0% 96%;                     /* Accent background */
    --border: 0 0% 90%;                     /* Border color */
    --ring: 221.2 83.2% 53.3%;             /* Focus ring */
    
    /* Enhanced Gradients with Brand Colors */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(221.2, 70%, 45%) 100%);
    --gradient-secondary: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(0, 0%, 90%) 100%);
    
    /* Professional Color Palette */
    --success: 142.1 76.2% 36.3%;           /* Green */
    --warning: 47.9 95.8% 53.1%;            /* Yellow */
    --destructive: 0 84.2% 60.2%;           /* Red */
    --info: var(--primary);                 /* Blue info */
}

/* Modern Grid System */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
    .grid {
        gap: var(--spacing-lg);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
}

.top-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

@media (max-width: 640px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Enhanced Feature Cards */
.features {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    background: var(--white);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.feature-card p {
    line-height: 1.7;
    margin: 0;
}

/* Enhanced Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--gray-50);
}

.pricing-card {
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    background: var(--white);
    transition: all var(--transition-normal);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--border-radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.period {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-xl) 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.125rem;
}

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

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.cta h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Enhanced Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

/* Enhanced Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-right {
    animation: fadeRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Screen Enhancement */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Interactive Elements */
.interactive-demo {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    background: var(--white);
}

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

.interactive-demo:hover::before {
    left: 100%;
}

/* Modern Card Hover Effects */
.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.card-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
}

.card-gradient:hover {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-blue) 0.1%, var(--white) 100%);
    border-color: var(--primary-blue);
}

/* Professional Form Fields - Frontend Style Matching */
.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid hsl(var(--border));
    border-radius: 8px;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 0.875rem;
    font-family: Inter, system-ui, sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
    background: hsl(var(--background));
}

.form-group input.form-error,
.form-group select.form-error,
.form-group textarea.form-error {
    border-color: hsl(var(--destructive));
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
    color: hsl(var(--muted-foreground));
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid hsl(var(--border));
    border-radius: 4px;
    background: hsl(var(--background));
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

/* Form Buttons */
.btn.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    transition: all 0.2s ease;
}

.btn.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: 2px solid hsl(var(--primary));
    box-shadow: 0 2px 4px hsl(var(--primary) / 0.2);
}

.btn.btn-primary:hover {
    background: hsl(var(--primary) / 0.9);
    border-color: hsl(var(--primary) / 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px hsl(var(--primary) / 0.3);
}

.btn.btn-secondary {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: 2px solid hsl(var(--border));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn.btn-secondary:hover {
    background: hsl(var(--secondary) / 0.8);
    border-color: hsl(var(--primary));
    color: hsl(var(--primary));
    transform: translateY(-1px);
}

.btn.btn-outline {
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn.btn-outline:hover {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transform: translateY(-1px);
    box-shadow: 0 4px 8px hsl(var(--primary) / 0.2);
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-header p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

/* Contact Cards */
.contact-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: hsl(var(--primary) / 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-info a {
    display: block;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: hsl(var(--primary));
}

/* Location Cards */
.location-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.location-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-details {
    text-align: left;
    margin-top: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.location-details i {
    color: hsl(var(--primary));
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Responsive Form Adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .checkbox-label {
        align-items: flex-start;
    }
    
    .btn.btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Page Specific Styles */
.pricing-detailed {
    padding: 80px 0;
    background: hsl(var(--background));
}

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

.pricing-card {
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

/* Remove problematic hover gradient */
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: hsl(var(--primary) / 0.3);
    /* Removed gradient background */
}

.pricing-card.featured {
    border-color: hsl(var(--primary));
    box-shadow: 0 8px 30px hsl(var(--primary) / 0.2);
    transform: scale(1.02);
    overflow: visible;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: hsl(var(--primary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}


.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 1rem 0;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(var(--primary));
}

.period {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

.plan-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    font-size: 0.875rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    width: 16px;
    text-align: center;
}

.pricing-features .fa-check {
    color: hsl(var(--primary));
}

.pricing-features .fa-times {
    color: #dc3545 !important; /* Red color for cross */
    opacity: 0.8 !important;
    font-weight: 600 !important;
}

/* Fix button visibility issues */
.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: hsl(var(--primary));
    color: white !important; /* Force white text */
    border: 2px solid hsl(var(--primary));
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.btn-pricing:hover {
    background: hsl(var(--primary) / 0.9);
    color: white !important; /* Maintain white text on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.trial-note {
    text-align: center;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin: 1rem 0 0 0;
}

/* Billing Toggle Section */
.billing-toggle-section {
    padding: 2rem 0;
    background: hsl(var(--muted) / 0.3);
    border-bottom: 1px solid hsl(var(--border));
}

/* Custom Plan Section */
.custom-plan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--muted) / 0.3) 100%);
}

.custom-plan-card {
    max-width: 900px;
    margin: 0 auto;
    background: hsl(var(--card));
    border: 2px solid hsl(var(--primary));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px hsl(var(--primary) / 0.1);
}

.custom-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.custom-plan-title h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.custom-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.custom-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.custom-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(var(--primary));
}

.custom-price .period {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

.plan-description {
    margin: 0;
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
}

.custom-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.custom-features-column li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.custom-features-column i {
    color: hsl(var(--primary));
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.custom-plan-cta {
    text-align: right;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: hsl(var(--primary));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.btn-custom:hover {
    background: hsl(var(--primary) / 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.custom-note {
    font-size: 0.8125rem;
    color: hsl(var(--muted-foreground));
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    .custom-plan-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .custom-plan-cta {
        text-align: center;
    }
    
    .custom-note {
        text-align: center;
    }
    
    .custom-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .custom-plan-card {
        padding: 1.5rem;
    }
    
    .custom-plan-title h3 {
        font-size: 1.5rem;
    }
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(var(--border));
    transition: all 0.3s ease;
    border-radius: 34px;
    border: 2px solid hsl(var(--border));
}

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

.slider:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

input:checked + .slider {
    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
}

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

input:focus + .slider {
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.2);
}

/* Monthly/Yearly Labels */
.pricing-toggle > span {
    font-weight: 700;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    background: hsl(var(--background));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-toggle > span:hover {
    color: hsl(var(--primary));
    background: hsl(var(--primary) / 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-toggle > span.active {
    color: hsl(var(--primary));
    font-weight: 800;
    border-color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.discount {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

/* Feature Comparison Table */
.feature-comparison {
    padding: 80px 0;
    background: hsl(var(--muted) / 0.3);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: white;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
}

.comparison-table th {
    background: transparent;
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    text-align: left;
    background: hsl(var(--primary) / 0.9);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    color: hsl(var(--foreground));
    text-align: center;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: hsl(var(--muted) / 0.3);
}

.comparison-table tbody tr:hover {
    background: hsl(var(--primary) / 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .fa-check,
.comparison-table .fa-times {
    font-size: 1.25rem;
    font-weight: 600;
}

.comparison-table .fa-check {
    color: hsl(var(--primary));
}

.comparison-table .fa-times {
    color: #dc3545 !important; /* Red color for cross */
    opacity: 0.8 !important;
    font-weight: 600 !important;
}

/* Add-ons as Cards */
.addons {
    padding: 80px 0;
    background: hsl(var(--background));
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-card {
    background: hsl(var(--card));
    border: 2px solid hsl(var(--border));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: hsl(var(--primary) / 0.5);
}

.addon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.addon-card h3 {
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.addon-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
}

.btn-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: hsl(var(--primary));
    border: 2px solid hsl(var(--primary));
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-addon:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-1px);
}

/* FAQ Collapsible */
.faq {
    padding: 80px 0;
    background: hsl(var(--muted) / 0.2);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
    color: hsl(var(--primary));
}

.faq-icon {
    font-size: 1.2rem;
    color: hsl(var(--primary));
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(var(--muted) / 0.1);
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin: 0;
}

/* Equal Height Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch; /* This makes all cards equal height */
}

.feature-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure full height usage */
}

.feature-card p {
    flex-grow: 1; /* This will expand to fill available space */
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding-bottom: 80px;
    padding-top: 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--muted) / 0.3) 100%);
}

.steps-visual {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.step-visual {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-image {
    margin-bottom: 2rem;
}

.step-visual h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.step-visual p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-top: auto;
    margin-bottom: 0;
}

.visual-placeholder {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-visual:hover .visual-placeholder {
    transform: scale(1.05);
}

/* Less Blue Color Adjustments */
:root {
    /* Reduce blue dominance with more neutral alternatives */
    --success: 142.1 76.2% 36.3%;           /* Green - keep as is */
    --warning: 38.7 92.0% 50.2%;            /* Orange - warmer tone */
    --info: 200.1 95.0% 40.1%;              /* Teal - instead of blue */
    
    /* Add more color variety */
    --purple: 262.1 83.3% 57.8%;            /* Purple accent */
    --orange: 24.6 95.0% 53.1%;             /* Orange accent */
    --teal: 172.6 88.9% 35.7%;              /* Teal accent */
}

/* Color Diversification - Reduce Blue Overload */
.feature-icon:nth-child(2) {
    background: linear-gradient(135deg, hsl(var(--success)), hsl(142.1, 76.2%, 46.3%)) !important;
}

.feature-icon:nth-child(4) {
    background: linear-gradient(135deg, hsl(var(--warning)), hsl(38.7, 92.0%, 60.2%)) !important;
}

.addon-icon:nth-child(2) {
    background: linear-gradient(135deg, hsl(var(--purple)), hsl(262.1, 83.3%, 67.8%)) !important;
    box-shadow: 0 4px 12px hsl(var(--purple) / 0.3) !important;
}

.addon-icon:nth-child(3) {
    background: linear-gradient(135deg, hsl(var(--orange)), hsl(24.6, 95.0%, 63.1%)) !important;
    box-shadow: 0 4px 12px hsl(var(--orange) / 0.3) !important;
}

/* Legal Pages Styling */
.policy-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.policy-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-content {
    padding: 80px 0;
    background: hsl(var(--background));
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toc-header h3 {
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-link {
    display: block;
    padding: 0.75rem 1rem;
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--primary));
    border-left-color: hsl(var(--primary));
    transform: translateX(4px);
}

.toc-link.active {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-left-color: hsl(var(--primary));
    font-weight: 500;
}

.legal-text {
    max-width: 800px;
    line-height: 1.7;
    color: hsl(var(--foreground));
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: hsl(var(--primary));
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    scroll-margin-top: 100px;
}

.legal-section h3 {
    color: hsl(var(--foreground));
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.legal-section li strong {
    color: hsl(var(--foreground));
    font-weight: 600;
}

.legal-section a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.definitions-list {
    background: hsl(var(--muted) / 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.definition-item {
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border) / 0.5);
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.definition-item:last-child {
    border-bottom: none;
}

.definition-item strong {
    color: hsl(var(--primary));
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info {
    background: hsl(var(--muted) / 0.2);
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method strong {
    color: hsl(var(--foreground));
    font-weight: 600;
}

.contact-method a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .toc-sidebar {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc-sidebar {
        position: static;
        order: 1;
    }
    
    .legal-text {
        order: 2;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .toc-sidebar {
        padding: 1rem;
    }
    
    .toc-nav {
        display: none;
    }
    
    .toc-sidebar.mobile-expanded .toc-nav {
        display: flex;
    }
    
    .toc-header {
        cursor: pointer;
        position: relative;
    }
    
    .toc-header::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .toc-sidebar.mobile-expanded .toc-header::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .definitions-list,
    .contact-info {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* UI/UX Improvements - Additional Fixes */

/* Fix right arrow animation in hero banner */
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.banner-content .fa-arrow-right {
    animation: bounce-right 2s infinite;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

@keyframes bounce-right {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(3px);
    }
    60% {
        transform: translateX(1px);
    }
}

/* Dashboard section with social media icons */
.hero-image {
    position: relative;
}

.dashboard-preview {
    position: relative;
    display: inline-block;
}

.dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Social Media Icons Overlay */
.social-icons-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    transform: translateX(300px);
}

.social-icon-float {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    top: 50%;
    right: 25%;
    transform-origin: 50% 50%;
}

/* Central PS Logo */
.central-logo {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: hsl(var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: centralPulse 3s ease-in-out infinite;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

@keyframes centralPulse {
    0%, 100% {
        transform: translate(50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: translate(50%, -50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    }
}

/* Connecting Lines SVG */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connecting-lines line {
    stroke: hsl(var(--primary));
    stroke-width: 2;
    stroke-dasharray: 5,5;
    opacity: 0.6;
    animation: dashAnimation 3s linear infinite;
}

@keyframes dashAnimation {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 20;
    }
}


/* Circular Pattern Social Media Icons */
.facebook-icon {
    background: #1877f2;
    transform: rotate(0deg) translateX(250px) rotate(0deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: 0s;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: rotate(40deg) translateX(250px) rotate(-40deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -2.22s;
}

.twitter-icon {
    background: #000000;
    transform: rotate(80deg) translateX(250px) rotate(-80deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -4.44s;
}

.x-icon {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
}

.googlemybusiness-icon {
    background: #4285f4;
    transform: rotate(120deg) translateX(250px) rotate(-120deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -6.67s;
}

.youtube-icon {
    background: #ff0000;
    transform: rotate(160deg) translateX(250px) rotate(-160deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -8.89s;
}

.tiktok-icon {
    background: #000000;
    transform: rotate(200deg) translateX(250px) rotate(-200deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -11.11s;
}

.line-icon {
    background: #00c300;
    transform: rotate(240deg) translateX(250px) rotate(-240deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -13.33s;
}

.yelp-icon {
    background: #d32323;
    transform: rotate(280deg) translateX(250px) rotate(-280deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -15.56s;
}

.yahoo-icon {
    background: #7B0099;
    transform: rotate(320deg) translateX(250px) rotate(-320deg);
    animation: circularRotate 20s linear infinite;
    animation-delay: -17.78s;
}

/* Circular Clockwise Rotation */
@keyframes circularRotate {
    0% {
        transform: rotate(0deg) translateX(250px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(250px) rotate(-360deg);
    }
}

/* Social media icon entrance animation */
@keyframes socialIconEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.3) rotate(-180deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1) rotate(0deg);
    }
}

/* Organic floating animation for social media icons */
@keyframes organicFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    16.66% {
        transform: translateY(-8px) translateX(3px) rotate(1deg);
    }
    33.33% {
        transform: translateY(-5px) translateX(-4px) rotate(-0.5deg);
    }
    50% {
        transform: translateY(2px) translateX(2px) rotate(0.8deg);
    }
    66.66% {
        transform: translateY(4px) translateX(-2px) rotate(-0.3deg);
    }
    83.33% {
        transform: translateY(-3px) translateX(1px) rotate(0.4deg);
    }
}

/* Person silhouette behind laptop */
.dashboard-img::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #4a5568;
    border-radius: 50% 50% 45% 45%;
    z-index: 1;
    opacity: 0.8;
}

/* Person's body */
.dashboard-img::before {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: #4a5568;
    border-radius: 40px 40px 0 0;
    z-index: 1;
    opacity: 0.8;
}


/* Fix Start Free Trial button text color */
.btn-primary {
    color: white !important;
}

.btn-primary:hover {
    color: white !important;
}

/* Enhanced stats section with card design */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.stat {
    background: white !important;
    padding: 2rem 1.5rem !important;
    border-radius: 16px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid hsl(var(--border)) !important;
    transition: all 0.6s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, hsl(var(--primary)), #10b981);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.stat-number {
    display: block !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, hsl(var(--primary)), #10b981) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    display: block !important;
    font-size: 0.875rem !important;
    color: hsl(var(--muted-foreground)) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Smooth animations for features cards */
.features .feature-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.features .feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1) !important;
}

/* Remove multi-color gradients from How it Works */
.step-visual .visual-placeholder {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(221.2, 70%, 45%)) !important;
}

/* Pricing section - 4 cards in 1 row and reduce content */
.pricing-grid.grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.pricing-card .pricing-header p {
    font-size: 0.875rem !important;
    margin: 0.5rem 0 !important;
}

.pricing-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
}

.pricing-features li {
    padding: 0.25rem 0 !important;
    font-size: 0.875rem !important;
}


/* Fix Contact Sales button visibility */
.cta .btn-secondary {
    background: white !important;
    color: hsl(var(--primary)) !important;
    border: 2px solid white !important;
}

.cta .btn-secondary:hover {
    background: hsl(var(--primary)) !important;
    color: white !important;
    border-color: hsl(var(--primary)) !important;
    transform: translateY(-2px) !important;
}

/* Reduce excessive blue in CTA section */
.cta {
    background: linear-gradient(135deg, hsl(220, 13%, 18%) 0%, hsl(220, 13%, 25%) 100%) !important;
}

/* Footer hover animations */
.footer-section ul li a {
    position: relative !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding: 0.25rem 0 !important;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section ul li a:hover {
    color: var(--white) !important;
}

/* Responsive adjustments for pricing */
@media (max-width: 1024px) {
    .pricing-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* Additional Improvements */

/* Remove Professional plan hover background */
.pricing-card.featured:hover {
    background: inherit !important;
}


/* Make all pricing buttons consistent */
.pricing-card .btn {
    width: 100% !important;
    margin-top: 1.5rem !important;
    font-weight: 600 !important;
    transition: all 0.5s ease !important;
}

.pricing-card .btn-primary {
    background: hsl(var(--primary)) !important;
    color: white !important;
    border: 2px solid hsl(var(--primary)) !important;
}

.pricing-card .btn-secondary {
    background: white !important;
    color: hsl(var(--primary)) !important;
    border: 2px solid hsl(var(--primary)) !important;
}

.pricing-card .btn-outline {
    background: transparent !important;
    color: hsl(var(--primary)) !important;
    border: 2px solid hsl(var(--primary)) !important;
}

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

.pricing-card .btn-primary:hover {
    background: hsl(221.2, 83.2%, 48%) !important;
    border-color: hsl(221.2, 83.2%, 48%) !important;
}

.pricing-card .btn-secondary:hover,
.pricing-card .btn-outline:hover {
    background: hsl(var(--primary)) !important;
    color: white !important;
    border-color: hsl(var(--primary)) !important;
}

/* Enhanced feature cards with smooth hover animations */
.features .feature-card {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.features .feature-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.12) !important;
}

.features .feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: white;
    background: hsl(var(--primary));
}

.features .feature-card:hover h3 {
    color: hsl(var(--primary));
    transform: translateY(-2px);
}

.features .feature-card:hover p {
    color: hsl(var(--foreground));
    transform: translateY(-1px);
}

.features .feature-card .feature-icon {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: hsl(var(--primary) / 0.1);
}

.features .feature-card h3 {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.features .feature-card p {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* How it Works section - text hover effects */
.step-visual {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.step-visual:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1) !important;
}

.step-visual:hover h3 {
    color: hsl(var(--primary));
    transform: translateY(-2px);
}

.step-visual:hover p {
    color: hsl(var(--foreground));
    transform: translateY(-1px);
}

.step-visual:hover .visual-placeholder i {
    transform: scale(1.1);
    animation: pulse 1.5s infinite;
}

.step-visual h3 {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-visual p {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-visual .visual-placeholder i {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Final UI Improvements */

/* Logo link styling */
.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.02);
}

/* Make feature icons blue instead of faded */
.features .feature-card .feature-icon {
    background: hsl(var(--primary)) !important;
    color: white !important;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.features .feature-card .feature-icon i {
    font-size: 1.5rem;
    color: white !important;
}

/* Fix Most Popular badge positioning and visibility */
.pricing-card .popular-badge {
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(221.2, 83.2%, 48%)) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    z-index: 10 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
}

.pricing-card.featured {
    position: relative !important;
    border: 2px solid hsl(var(--primary)) !important;
}

.pricing-card.featured:hover .popular-badge {
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4) !important;
}

/* Equalize button heights in all pricing cards */
.pricing-grid.grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
}

.pricing-card {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    height: 100% !important;
    min-height: 600px !important;
}

.pricing-card .pricing-header {
    flex-shrink: 0 !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid hsl(var(--border)) !important;
    margin-bottom: 1rem !important;
}

.pricing-card .pricing-features {
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 300px !important;
}

.pricing-card .btn {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Ensure consistent spacing for all cards */
.pricing-card .pricing-header {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid hsl(var(--border)) !important;
    margin-bottom: 1rem !important;
}

/* Hero stats - ensure 4 cards fit properly */
.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
    margin-top: 3rem !important;
}

/* Decrease main banner heading font size */
.hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin: 1rem 0 1.5rem 0;
    line-height: 1.4;
}

/* Responsive adjustments for 4 stat cards */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .hero h1 {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    .feature-card h3,
    .pricing-header h3,
    .step-visual h3 {
        font-size: 1.125rem !important;
    }
    
    /* Smaller social icons on mobile */
    .social-icon-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Smaller circular rotation on mobile */
    @keyframes circularRotate {
        0% {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
    
    
    .dashboard-img::after {
        width: 60px;
        height: 60px;
        bottom: 8%;
    }
    
    .dashboard-img::before {
        width: 90px;
        height: 45px;
        bottom: -2%;
    }
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: hsl(var(--foreground));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: white !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 2rem 0 !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 1rem 0 !important;
    }
    
    .nav-menu li a {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .nav-menu li a:hover {
        background: hsl(var(--primary) / 0.1) !important;
        color: hsl(var(--primary)) !important;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    /* Navbar adjustments for mobile */
    .navbar {
        padding: 1rem 0 !important;
    }
    
    .navbar .container {
        padding: 0 1rem !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid.grid-4 {
        grid-template-columns: 1fr !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr !important;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .banner-content .fa-arrow-right {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    /* Homepage pricing section mobile optimizations */
    .pricing .pricing-grid {
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    /* Reduce section padding on mobile */
    .pricing {
        padding: 3rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
}

/* Additional content spacing optimizations for all screen sizes */
.pricing-card .pricing-features {
    margin: 1rem 0 !important;
    padding: 0 !important;
    justify-content: space-between !important;
    min-height: 0 !important;
}

.pricing-card .pricing-features li {
    padding: 0.3rem 0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.pricing-card .pricing-header {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
}

.pricing-card .pricing-header h3 {
    margin-bottom: var(--spacing-sm) !important;
}

.pricing-card .price {
    margin: 0.75rem 0 !important;
}

.pricing-card .pricing-header p {
    margin: 0.5rem 0 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
}

/* Compact button spacing */
.pricing-card .btn {
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
}

.pricing-card .trial-note {
    margin: 0.5rem 0 0 !important;
    font-size: 0.8rem !important;
}

/* Page Header Styles */
.page-header {
    padding: 200px 0 60px;
}

.page-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--gray-50, #f8fafc);
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    padding: 1rem 0;
    margin-top: 70px; /* Account for fixed navbar */
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.75rem;
    color: var(--gray-400, #9ca3af);
}

.breadcrumb-item a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: hsl(var(--primary) / 0.8);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray-600, #4b5563);
    font-weight: 500;
}

/* Mobile breadcrumb adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
        font-size: 0.8125rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.5rem;
    }
}