@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0506;
    --bg-secondary: #130a0c;
    --bg-card: rgba(25, 14, 17, 0.6);
    --bg-card-hover: rgba(40, 20, 24, 0.85);
    --accent-red: #ff1f4f;
    --accent-red-hover: #ff476f;
    --accent-glow: rgba(255, 31, 79, 0.35);
    --accent-gradient: linear-gradient(135deg, #ff1f4f 0%, #a80024 100%);
    --accent-gradient-hover: linear-gradient(135deg, #ff476f 0%, #c4002d 100%);
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;
    --border-color: rgba(255, 31, 79, 0.15);
    --border-color-hover: rgba(255, 31, 79, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    background-image: linear-gradient(rgba(10, 5, 6, 0.15), rgba(10, 5, 6, 0.15)), url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Mouse Tail Canvas */
#cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Layout container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Background glows */
.glow-bg-1, .glow-bg-2 {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 31, 79, 0.12) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.glow-bg-1 {
    top: 10%;
    right: -10%;
}

.glow-bg-2 {
    top: 50%;
    left: -10%;
}

/* Header & Nav */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 5, 6, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 31, 79, 0.08);
    transition: var(--transition-smooth);
}

header.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 5, 6, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 15px var(--accent-glow);
}

.logo span {
    background: linear-gradient(to right, #fff, var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

nav.main-nav a:hover, nav.main-nav a.active {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-cta {
    background: var(--accent-gradient);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 31, 79, 0.3);
}

.nav-cta:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 31, 79, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    text-align: center;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 31, 79, 0.1);
    border: 1px solid rgba(255, 31, 79, 0.3);
    color: var(--accent-red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(255, 31, 79, 0.1); }
    100% { box-shadow: 0 0 15px rgba(255, 31, 79, 0.4); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #ff859f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    color: var(--accent-red);
    -webkit-text-fill-color: initial;
    background: none;
    text-shadow: 0 0 20px rgba(255, 31, 79, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 31, 79, 0.35);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 31, 79, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 31, 79, 0.4);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(35, 12, 16, 0.75) 0%, rgba(10, 4, 5, 0.95) 100%);
    border: 1px solid rgba(255, 31, 79, 0.35);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(255, 31, 79, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 15px rgba(255, 31, 79, 0.3);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 31, 79, 0.05) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 40px rgba(255, 31, 79, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 31, 79, 0.15);
    border: 1px solid rgba(255, 31, 79, 0.45);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(255, 31, 79, 0.15);
}

.feature-card:hover .feature-icon {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 0 20px rgba(255, 31, 79, 0.4);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 31, 79, 0.15);
    background: linear-gradient(180deg, rgba(35, 15, 18, 0.7) 0%, rgba(20, 10, 12, 0.7) 100%);
    transform: scale(1.03);
}

.pricing-card.popular::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(255, 31, 79, 0.4);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 20px 40px rgba(255, 31, 79, 0.15);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 31, 79, 0.25);
}

.plan-name {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
    color: var(--accent-red);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.plan-price .period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-red);
    font-weight: bold;
    text-shadow: 0 0 10px var(--accent-glow);
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-features li.disabled::before {
    content: '✗';
    color: var(--text-muted);
    text-shadow: none;
}

.pricing-card .btn {
    width: 100%;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px rgba(255, 31, 79, 0.08);
}

.stars {
    color: #ffb703;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.reviewer-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active {
    background: rgba(35, 14, 18, 0.4);
    border-color: var(--accent-red);
}

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

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 31, 79, 0.1);
}

/* Articles Section */
.blog-articles {
    padding: 100px 0;
}

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

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 40px rgba(255, 31, 79, 0.1);
}

.article-badge {
    background: rgba(255, 31, 79, 0.1);
    color: var(--accent-red);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a:hover {
    color: var(--accent-red);
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.read-more-link {
    color: var(--accent-red) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-link:hover {
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Individual Article Page Styles */
.article-page {
    padding-top: 150px;
    padding-bottom: 100px;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3.5rem 3rem;
}

.article-body-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e9ecef;
}

.article-body-content p {
    margin-bottom: 1.5rem;
}

.article-body-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem 0;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-red);
    padding-left: 1rem;
}

.article-body-content h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.article-body-content ul, .article-body-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body-content li {
    margin-bottom: 0.5rem;
}

.article-body-content strong {
    color: var(--accent-red);
}

.article-body-content a {
    color: var(--accent-red);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.article-body-content a:hover {
    color: var(--accent-red-hover);
    text-shadow: 0 0 8px var(--accent-glow);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.back-to-home:hover {
    color: var(--accent-red);
}

/* Footer & PBN Links */
footer.site-footer {
    background-color: #050203;
    border-top: 1px solid rgba(255, 31, 79, 0.15);
    padding: 4rem 0 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-logo img {
    height: 32px;
    width: 32px;
    border-radius: 6px;
    border: 1px solid var(--accent-red);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

/* PBN Section: Highly visible friendship links */
.footer-pbn {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #e9ecef;
}

.footer-pbn a {
    color: var(--accent-red);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.footer-pbn a:hover {
    color: var(--accent-red-hover);
    text-shadow: 0 0 10px var(--accent-glow);
    text-decoration: underline;
}

.footer-pbn span {
    color: rgba(255, 255, 255, 0.25);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid, .pricing-grid, .reviews-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    /* Move mobile nav trigger to 1024px to prevent horizontal wrapping */
    .nav-wrapper {
        position: relative;
    }
    nav.main-nav {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-secondary);
        border-bottom: 1px solid rgba(255, 31, 79, 0.15);
        transition: var(--transition-smooth);
        padding: 2rem;
        border-radius: 0 0 16px 16px;
    }
    nav.main-nav.active {
        left: 0;
    }
    nav.main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .features-grid, .pricing-grid, .reviews-grid, .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-content-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Article Thumbnail Banner styling */
.article-banner {
    width: 100%;
    height: 160px;
    background: #10080a;
    border-bottom: 1px solid rgba(255, 31, 79, 0.15);
    position: relative;
    overflow: hidden;
}

.article-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.article-card:hover .article-banner img {
    transform: scale(1.06);
}

/* Feature Icon Image styling */
.feature-icon {
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section floating glassmorphism panels for crisp legibility over bright background */
.features .container, .pricing .container, .reviews .container, .faq .container, .blog-articles .container {
    background: rgba(15, 7, 9, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 31, 79, 0.2);
    border-radius: 24px;
    padding: 5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero .container {
    background: rgba(15, 7, 9, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 31, 79, 0.2);
    border-radius: 24px;
    padding: 5rem 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    margin-top: 50px;
}

.features, .pricing, .reviews, .faq, .blog-articles {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .features .container, .pricing .container, .reviews .container, .faq .container, .blog-articles .container, .hero .container {
        padding: 3rem 1.5rem;
    }
}
