@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

@font-face {
    font-family: 'Roboto';
    src: url('https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
    
:root {
    --primary-color: #6c63ff;
    --secondary-color: #854DFC;
    --accent-color: #ff6b6b;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --card-bg: rgba(255, 255, 255, 0.9);
}

@font-face {
    font-family: 'Nasalization';
    src: url("/static/fonts/nasalization-rg.3e5a870c6d7a.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.text-accent {
    color: var(--accent-color);
}

/* Navbar - Seamless with Hero (No Visual Break) */
.navbar {
    background: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: bold;
    color: var(--text-color);
    font-family: 'Nasalization','Poppins';
    transition: opacity 0.3s ease;
    font-size: 1.3rem;
}

.navbar-brand:hover {
    opacity: 0.8;
    color: var(--text-color);
}

/* Centered nav with reduced width */
.navbar-collapse.justify-content-center {
    flex-grow: 0;
}

.navbar-nav {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 30px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--primary-color);
    background: white;
}

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

.navbar .btn-outline-light:hover {
    background: var(--text-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar .btn-light {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.25);
}

.navbar .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.35);
    color: white;
}

/* Mobile navbar styling */
.navbar-toggler {
    border: 2px solid var(--text-color);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    background: white;
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .navbar-nav {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link:hover {
        background: transparent;
    }
    
    .navbar .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .navbar .btn-outline-light,
    .navbar .btn-light {
        width: 100%;
    }
}

/* Hero Section - Side by Side WITH Background */
.hero-sidebyside {
    background: radial-gradient(circle at 10% 20%, var(--secondary-color) 0%, #9769FF 100%);
    color: white;
    padding: 100px 0 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-sidebyside::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

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

.hero-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.hero-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-visual {
    animation: float-smooth 4s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(5px); }
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.hero-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    animation: badge-float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--accent-color);
}

.badge-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

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

/* Hero Section - Side by Side WITHOUT Background (Clean Version) */
.hero-clean {
    background: white;
    padding: 0;
}

.hero-content-clean {
    position: relative;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
}

.eyebrow-badge {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.hero-title-clean {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
}

.brand-text {
    font-size: 0.8em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-clean {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--medium-gray);
}

.hero-cta-clean {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-hero-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
    color: white;
}

.hero-note-clean {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.proof-avatars {
    display: flex;
    margin-left: -10px;
}

.proof-avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 3px solid white;
    margin-left: -10px;
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-color);
}

.proof-text strong {
    color: var(--primary-color);
}

.hero-visual-clean {
    position: relative;
}

.visual-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    animation: float-gentle 5s ease-in-out infinite;
}

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

.floating-element {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    animation: element-float 3s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-element strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.15rem;
}

.floating-element small {
    display: block;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.element-1 {
    top: 15%;
    left: -80px;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -80px;
    animation-delay: 1s;
}

.element-3 {
    bottom: 10%;
    left: -60px;
    animation-delay: 2s;
}

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

/* Responsive adjustments for both versions */
@media (max-width: 991px) {
    .hero-sidebyside,
    .hero-clean {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-title-large,
    .hero-title-clean {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .badge-1,
    .badge-2 {
        position: static;
        margin: 1rem auto;
        display: inline-flex;
    }

    .floating-element {
        position: static;
        margin: 1rem 0;
    }

    .hero-proof {
        flex-direction: column;
        text-align: center;
    }

    .proof-avatars {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-cta-group,
    .hero-cta-clean {
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-gradient {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: space-between;
    }

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

    .stat-number {
        font-size: 1.75rem;
    }
}

/* Trust Section */
.trust-section {
    border-bottom: 1px solid #e2e8f0;
}

.trust-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: #64748b;
    font-weight: 600;
}

.logo-grid-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.trust-logo {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.trust-logo-img {
    height: 60px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.trust-logo-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Metrics Section (Your Original Design) */
.metrics-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: white;
}

.metrics-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 25rem);
    font-weight: 700;
    color: rgba(108, 99, 255, 0.60);
    white-space: nowrap;
    z-index: 1;
    font-family: 'Roboto', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

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

.metrics-number {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.metrics-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #666;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.metrics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
    z-index: 1;
}

/* Pain Killer Cards */
.pain-killer-card {
    background: white;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pain-killer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pain-icon {
    color: var(--secondary-color);
}

/* Marquee Section (Your Original Design) */
.marquee-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    background: white;
}

.marquee {
    white-space: nowrap;
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee.reverse {
    animation: marquee-reverse 30s linear infinite;
}

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

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    margin: 0 1rem;
    min-width: 200px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.marquee-item.primary {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
}

.marquee-item.accent {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
}

.marquee-item.primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.marquee-item.accent:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-checklist {
    list-style: none;
    padding: 0;
}

.feature-checklist li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.feature-checklist li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.feature-visual {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.visual-placeholder {
    color: var(--primary-color);
    opacity: 0.7;
}

.visual-placeholder i {
    color: var(--accent-color);
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-color);
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.comparison-table thead th {
    padding: 1.5rem;
    font-weight: 700;
    border: none;
}

.comparison-table tbody td {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.trendscribbr-col {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.1));
}
/* Case Study Section */
.case-study-section {
    position: relative;
    overflow: hidden;
}

.author-avatar {
    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-weight: 700;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.roi-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-5px);
}

.roi-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.roi-label {
    color: #64748b;
    font-size: 0.95rem;
}

/* Pricing Cards Preview */
.pricing-card-preview {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.pricing-featured {
    border: 2px solid var(--accent-color);
    position: relative;
    transform: scale(1.05);
}

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

.popular-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-tag .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-tag .period {
    font-size: 1.2rem;
    color: #64748b;
}

/* CTA Section (Your Original Design) */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: 
        url('https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTExL3Jhd3BpeGVsb2ZmaWNlMV9taW5pbWFsXzNkX3JlbmRlcl9vZl9ibHVycmVkX3BvbHlfcGxleHVzX2Rlc2lnbl9kY2I5NTAwNS01ZTM2LTQ1MjAtYThlZi1mNWRmZTgwZjA3ZjRfMS5qcGc.jpg') center/cover no-repeat,
        radial-gradient(circle at 20% 150%, rgba(108, 99, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% -50%, rgba(255, 107, 107, 0.8) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-btn {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--accent-color);
    color: white;
}

.cta-btn::after {
    content: '→';
    position: relative;
    top: -1px;
    margin-left: 10px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    right: 15%;
    animation-delay: 2s;
}

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

/* Footer */
.footer {
    background-color: #333;
    color: white;
}

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

.footer a:hover {
    color: var(--accent-color);
}

.footer .list-inline-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer .list-inline-item a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Accordion */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(255, 107, 107, 0.05));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .metrics-section {
        padding: 80px 0;
    }

    .metrics-background {
        font-size: 8rem;
    }

    .pricing-featured {
        transform: none;
        margin: 2rem 0;
    }

    .pricing-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 767px) {
    .display-4 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .cta-hero-btn {
        min-width: 100%;
        max-width: 350px;
        padding: 1.2rem 2rem;
    }

    .logo-grid-inline {
        gap: 1rem;
    }

    .trust-logo {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .roi-card {
        margin-bottom: 1rem;
    }

    .roi-number {
        font-size: 2rem;
    }
}