/* Modern Landing Page Styles */

/* Global Reset & Base */
* {
    box-sizing: border-box;
}

body.landing-page {
    padding-top: 0;
    overflow-x: hidden;
}

/* Container Improvements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Hero Section */
.modern-hero {
    position: relative;
    padding: 10rem 1rem 7rem;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    animation: fadeInDown 0.8s ease;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    line-height: 1.1;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.modern-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    line-height: 1.7;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
    padding: 0 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    display: block;
}

/* Navigation */
.modern-nav {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.modern-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.modern-brand:hover {
    transform: scale(1.05);
    color: var(--primary-color);
}

.brand-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: transform 0.3s ease;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modern-brand:hover .brand-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    font-weight: 700;
}

/* Buttons */
.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-modern-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Feature Cards */
.modern-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.modern-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
}

.modern-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, currentColor, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-card:hover .modern-icon::after {
    opacity: 1;
}

.icon-primary {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(79, 70, 229, 0.05));
    color: var(--primary-color);
}

.icon-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--success-color);
}

.icon-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: var(--warning-color);
}

.icon-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: var(--info-color);
}

.icon-orange {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.1), rgba(253, 126, 20, 0.05));
    color: var(--orange-color);
}

.icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: var(--purple-color);
}

.modern-card:hover .modern-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: auto;
    flex-grow: 1;
}

.feature-link {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.modern-card:hover .feature-link {
    opacity: 1;
    transform: translateX(0);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(6, 182, 212, 0.02));
    border-radius: 30px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    overflow: visible;
    max-width: 100%;
}

.pricing-section .row {
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}

.pricing-section .row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.pricing-section .col-lg-5,
.pricing-section .col-md-8 {
    overflow: visible;
    display: flex;
    justify-content: center;
}

/* Pricing Card */
.modern-pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.modern-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-pricing-card:hover::before {
    opacity: 1;
}

.modern-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(79, 70, 229, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    white-space: nowrap;
}

.pricing-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    overflow: visible;
}

/* Ensure icon displays correctly - Bootstrap Icons uses ::before pseudo-element */
.pricing-icon-wrapper i {
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    color: white !important;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    font-style: normal !important;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: auto !important;
    font-family: "bootstrap-icons" !important;
}

.pricing-icon-wrapper i::before {
    display: inline-block !important;
    font-style: normal !important;
    font-weight: normal !important;
    line-height: 1 !important;
    vertical-align: -.125em !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    color: white !important;
    position: relative !important;
    z-index: 11 !important;
    text-rendering: auto !important;
    font-family: "bootstrap-icons" !important;
    /* Don't override content - let Bootstrap Icons handle it */
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin: 0 0 2rem 0;
    text-align: center;
    width: 100%;
}

.pricing-price-wrapper {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.price-amount {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-duration {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-features-wrapper {
    width: 100%;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.modern-features {
    margin: 0;
    text-align: left;
}

.modern-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.modern-features li:hover {
    transform: translateX(5px);
}

.modern-features li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-button-wrapper {
    width: 100%;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-btn {
    margin-top: 0;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.modern-cta {
    position: relative;
    padding: 5rem 1rem;
    border-radius: 30px;
    margin: 4rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: 30px;
    z-index: 0;
}

.modern-cta-title {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.modern-cta-subtitle {
    position: relative;
    z-index: 1;
    max-width: 600px;
    font-size: 1.1rem;
}

.trust-indicators {
    position: relative;
    z-index: 1;
}

.trust-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    color: white;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.5rem 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.trust-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: left;
}

.footer-brand-section {
    text-align: left;
}

.modern-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-align: left;
}

.footer-brand-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-cta {
    margin-top: 1rem;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-link-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-link-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link-item::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.footer-link-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-link-contact {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-link-contact:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.modern-footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    margin: 2rem 0;
}

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

.modern-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-primary {
    background: rgba(79, 70, 229, 0.2);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.badge-info {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* FAB */
.modern-fab {
    z-index: 1050;
}

.fab-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.5);
    color: white;
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        gap: 3rem;
    }
    
    .modern-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-section {
        margin: 3rem auto;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 7rem 1rem 5rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .modern-card {
        padding: 2rem 1.5rem;
    }
    
    .modern-pricing-card {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
    }
    
    .pricing-badge {
        top: -10px;
        right: -5px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .pricing-icon-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .pricing-title {
        margin-bottom: 1.5rem;
    }
    
    .pricing-price-wrapper {
        margin-bottom: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .pricing-features-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .pricing-button-wrapper {
        padding-top: 1.5rem;
    }
    
    .modern-cta {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }
    
    .trust-indicators .col-md-3 {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand-section {
        text-align: center;
    }
    
    .modern-footer-brand {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer-bottom .d-flex {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .section-padding {
        padding: 3rem 1rem;
    }
    
    .section-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .modern-nav {
        padding: 0.75rem 0;
    }
    
    .modern-brand {
        font-size: 1.1rem;
    }
    
    .brand-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .btn-modern-outline,
    .btn-modern-primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .modern-hero {
        padding: 6rem 1rem 4rem;
    }
    
    .modern-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin: 1rem 0;
    }
    
    .modern-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .modern-card {
        padding: 1.5rem 1.25rem;
    }
    
    .modern-pricing-card {
        padding: 2rem 1.25rem;
        max-width: 100%;
    }
    
    .pricing-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .pricing-icon-wrapper i.bi {
        font-size: 2rem !important;
    }
    
    .pricing-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .pricing-price-wrapper {
        margin-bottom: 1.25rem;
        padding: 1.25rem 0;
    }
    
    .pricing-features-wrapper {
        margin-bottom: 1.25rem;
    }
    
    .pricing-button-wrapper {
        padding-top: 1.25rem;
    }
    
    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .modern-cta {
        padding: 2.5rem 1rem;
    }
    
    .modern-cta-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .footer-brand-text {
        font-size: 1.25rem;
    }
    
    .footer-brand-icon {
        width: 45px;
        height: 45px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.landing-page {
    overflow-x: hidden;
    position: relative;
}

/* Parallax Base Styles */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Hero Parallax Background */
.hero-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.parallax-layer-1 {
    z-index: 1;
    transform: translateZ(0);
}

.parallax-layer-2 {
    z-index: 2;
    transform: translateZ(0);
}

.parallax-layer-3 {
    z-index: 3;
    transform: translateZ(0);
}

/* Section Parallax Effects */
section {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.section-parallax {
    position: relative;
    overflow: hidden;
}

/* Feature Cards Parallax */
.feature-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

.feature-card.parallax-active {
    transform: translateY(0) scale(1);
}

/* Pricing Card Parallax */
.modern-pricing-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

/* CTA Parallax Background */
.cta-background {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: 30px;
    z-index: 0;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

/* Floating Elements Parallax */
.floating-element {
    position: absolute;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Stagger Animation */
.scroll-reveal.stagger-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.stagger-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.stagger-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.stagger-4 {
    transition-delay: 0.4s;
}

.scroll-reveal.stagger-5 {
    transition-delay: 0.5s;
}

.scroll-reveal.stagger-6 {
    transition-delay: 0.6s;
}

/* Parallax Text Effects */
.parallax-text {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Background Parallax Patterns */
.parallax-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.05;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Smooth Parallax Transitions */
@media (prefers-reduced-motion: no-preference) {
    .parallax-element,
    .parallax-layer,
    .hero-background,
    .cta-background,
    .floating-element,
    .parallax-text,
    .parallax-pattern {
        transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

/* Disable Parallax on Mobile for Performance */
@media (max-width: 768px) {
    .parallax-element,
    .parallax-layer,
    .hero-background,
    .cta-background,
    .floating-element,
    .parallax-text,
    .parallax-pattern {
        transform: none !important;
        transition: none !important;
    }
}

/* Performance Optimization */
.parallax-container,
.parallax-element,
.parallax-layer {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Navbar Parallax Effect */
.modern-nav {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.modern-nav.scrolled {
    transform: translateY(0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Content Parallax */
.hero-content {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.hero-badge,
.modern-title,
.modern-subtitle,
.hero-buttons,
.hero-stats {
    will-change: transform, opacity;
}

/* Section Title Parallax */
.section-title {
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.section-subtitle {
    will-change: transform, opacity;
}

/* Card Hover with Parallax */
.modern-card:hover {
    transform: translateY(-10px) translateZ(20px);
}

.modern-pricing-card:hover {
    transform: translateY(-10px) translateZ(20px);
}

/* Trust Indicators Parallax */
.trust-item {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Footer Parallax */
.modern-footer {
    position: relative;
    transform-style: preserve-3d;
}

/* Smooth Scroll Offset for Fixed Nav */
html {
    scroll-padding-top: 80px;
}

/* Parallax Depth Effect */
.parallax-depth-1 {
    transform: translateZ(0);
}

.parallax-depth-2 {
    transform: translateZ(10px);
}

.parallax-depth-3 {
    transform: translateZ(20px);
}

/* Loading State for Parallax */
.parallax-loading {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.parallax-loaded {
    opacity: 1;
}

/* Loading Animation Enhancement */
#landing-price:empty::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Additional Modern Enhancements */
.landing-page {
    padding-top: 0;
}

/* Enhanced Accordion Styles */
.accordion-item {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-secondary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.1);
    border-color: var(--primary-color);
}

.accordion-body {
    color: var(--text-light);
    background-color: white;
    padding: 1.5rem;
    line-height: 1.7;
}

/* Section Enhancements */
.section-padding {
    padding: 6rem 1rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 1rem;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    text-align: center;
}

/* Button Position Relative Fix */
.btn-modern-primary,
.btn-modern-secondary,
.btn-modern-outline {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

/* Grid Improvements */
.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Feature Section Grid */
#features .row {
    margin-bottom: 2rem;
}

#features .row:last-child {
    margin-bottom: 0;
}

/* Pricing Card Alignment - Already handled above */

/* FAQ Section */
#faq {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section Improvements */
.modern-cta .container {
    position: relative;
    z-index: 1;
}

/* Footer Grid Improvements */
.footer-content .row {
    align-items: flex-start;
}

/* Spacing Utilities */
.mb-section {
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .mb-section {
        margin-bottom: 4rem;
    }
}

/* Smooth Transitions */
.modern-card,
.modern-pricing-card,
.accordion-item,
.trust-item {
    will-change: transform;
}

/* Enhanced Parallax Performance */
.hero-background,
.cta-background,
.hero-content,
.feature-card,
.modern-pricing-card {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
    
    html {
        scroll-behavior: smooth;
    }
}

/* Parallax Container Optimization */
.parallax-container {
    contain: layout style paint;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* GPU Acceleration for Parallax Elements */
.parallax-element,
.parallax-layer,
.hero-background,
.cta-background {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Better Focus States */
.btn-modern-primary:focus,
.btn-modern-secondary:focus,
.btn-modern-outline:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading States */
#landing-price {
    min-height: 2rem;
    display: inline-block;
}

/* Additional Modern Enhancements */
.landing-page {
    padding-top: 0;
}

/* Improved Container Spacing */
main > section {
    margin-bottom: 0;
}

/* Better Text Alignment */
.text-center {
    text-align: center !important;
}

/* Improved Button Spacing */
.hero-buttons .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Better Card Heights */
.modern-card {
    min-height: 100%;
}

/* Improved Pricing Card - Already handled above */

/* Better FAQ Spacing */
#faq .accordion {
    margin-top: 2rem;
}

/* Improved Footer Spacing */
.modern-footer {
    margin-top: 4rem;
}

/* Better Mobile Navigation */
@media (max-width: 768px) {
    .modern-nav .container {
        flex-wrap: wrap;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Improved Hero Section on Mobile */
@media (max-width: 576px) {
    .hero-content {
        padding: 0;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Better Grid Alignment */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Improved Feature Cards Grid */
#features .row {
    align-items: stretch;
}

/* Better Pricing Section */
.pricing-section {
    position: relative;
}

/* Improved CTA Buttons */
.modern-cta .d-flex {
    gap: 1rem;
}

@media (max-width: 576px) {
    .modern-cta .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}
