
:root {
    --background-color: #f9f9fb;
    --card-background: rgba(255, 255, 255, 0.7);
    --border-color: #e5e7eb;
    --primary-accent: #7F56D9;
    --text-color: #101828;
    --text-color-secondary: #667085;
    --heading-font-weight: 800;
    --primary-glow: #8A2BE2;
    --secondary-glow: #4169E1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

/* 
================================================== 
    2. Background Effects
================================================== 
*/
.mouse-tracker-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(65, 105, 225, 0) 60%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    transition: top 0.1s ease-out, left 0.1s ease-out;
}

.background-blob {
    position: absolute;
    z-index: -1;
    filter: blur(150px);
    opacity: 0.5;
    border-radius: 50%;
}

#blob1 {
    top: -5%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
}

#blob2 {
    bottom: -10px;
    right: -15%;
    width: 600px;
    height: 600px;
    background: var(--secondary-glow);
}


/*  
    3. General Layout & Utilities
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    flex-grow: 1;
    overflow: hidden;
}

section {
    padding: 100px 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-card:nth-child(4) { transition-delay: 0.3s; }
.accordion-item { transition-delay: calc(var(--i, 0) * 0.05s); }


/* 
    4. Reusable Components (Buttons) 
*/
.cta-button,
.card-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button::before,
.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before,
.card-button:hover::before {
    left: 100%;
}

.cta-button {
    margin-left: 20px;
    background-color: var(--primary-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(127, 86, 217, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 86, 217, 0.4);
}

.cta-button-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: white;
    border-color: #d0d5dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-button-secondary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button-secondary:hover i {
    transform: translateX(4px);
}

.card-button {
    display: block;
    text-align: center;
}

.card-button.primary {
    background-color: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
}

.card-button.secondary {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.card-button.secondary:hover {
    border-color: #d0d5dd;
}

/* 
================================================== 
    5. Layout Components (Header & Footer)
================================================== 
*/
.main-header-wrapper {
    position: sticky;
    top: 20px;
    z-index: 10;
    text-align: center;
}

.main-header {
    display: inline-block;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 385px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.logo-icon {
    color: var(--primary-accent);
    margin-right: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001; /* Ensure it's clickable */
    padding: 10px;
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0; /* Positioned on the right side of the screen */
    width: 300px; /* Set a fixed width for the panel */
    max-width: 80%; /* Ensure it doesn't take up too much space on small phones */
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px 30px; /* More padding at the top */
    
    /* Animation: Hidden off-screen to the right by default */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav.is-open {
    transform: translateX(0); /* Slides into view */
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--text-color-secondary);
    cursor: pointer;
    font-weight: 300;
    padding: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
}



.menu-close:hover {
    color: var(--text-color);
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align links to the left */
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    font-size: 1.5rem; /* A bit smaller for a neater look */
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-accent);
}

.cta-button-mobile {
    display: block; /* Make it full-width */
    width: 100%;
    text-align: center;
    background-color: var(--primary-accent);
    color: white !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.2rem !important; /* Smaller to fit the panel */
    margin-top: auto; /* Pushes the button to the bottom */
}


.site-footer {
    padding: 20px 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-left p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-color-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-accent);
    transform: translateY(-2px);
}

/* 
================================================== 
    6. Page Sections
================================================== 
*/

/* 6.1. Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: var(--heading-font-weight);
    line-height: 1.2;
    margin-bottom: 25px;
    min-height: 140px; 
    display: flex;
    flex-direction: column;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    width: 100%;
}

.hero-image-placeholder,
.hero-video-placeholder {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

/* NEW: Typewriter styles */
.typewriter-text {
    color: var(--primary-accent);
    display: block;
    margin-bottom: 10px;
}

.ti-cursor {
    color: var(--primary-accent);
    font-weight: 300;
    margin-left: 2px;
}

/* 6.2. Pricing & Services Sections */
.pricing-section,
.services-section {
    text-align: center;
}

.pricing-section h1,
.services-section h2 {
    font-size: 3.5rem;
    font-weight: var(--heading-font-weight);
    margin-bottom: 20px;
}

.services-section h2 {
    font-size: 2.8rem;
}

.pricing-section .section-subtitle,
.services-section .section-subtitle {
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-color-secondary);
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--card-background);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.highlight {
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(127, 86, 217, 0.1);
}

.pricing-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--primary-accent);
    display: flex;
    align-items: baseline;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-secondary);
    margin-left: 8px;
}

.card-description {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
    min-height: 40px;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.service-plan-card .price {
    color: #815ED9;
    animation: price-glow 3s infinite ease-in-out;
}

.service-plan-card .feature-list i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* 6.6. Payment Page */
.payment-section {
    padding: 80px 0;
}

.payment-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.payment-step {
    margin-bottom: 50px;
}
.payment-step:last-child {
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.step-number {
    background-color: var(--primary-accent);
    color: white;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.step-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.instructions {
    color: var(--text-color-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-option {
    background-color: #f0f0f5;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option .network {
    font-weight: 400;
    color: var(--text-color-secondary);
}

.payment-option.active {
    border-color: var(--primary-accent);
    background-color: #E9D7FE;
    color: var(--primary-accent);
}
.payment-option.active .network {
    color: var(--primary-accent);
}

.payment-details {
    display: none; /* Hidden by default */
    text-align: center;
    margin-bottom:30px;
    padding-top: 20px;
}

.payment-details.active {
    display: block;
}

.qr-code-wrapper {
    margin-bottom: 25px;
}
.qr-code-wrapper img {
    border: 6px solid rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.wallet-address-box {
    display: inline-flex;
    align-items: center;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 0.9rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}
.wallet-address-box span {
    word-break: break-all;
}
.wallet-address-box button {
    background: none;
    border: none;
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
    color: var(--text-color-secondary);
    transition: color 0.2s, transform 0.2s;
}
.wallet-address-box button:hover {
    color: var(--primary-accent);
    transform: scale(1.1);
}

/* Form Styles */
.confirmation-form .form-group {
    margin-bottom: 20px;
}
.confirmation-form label {
    font-size: 0.9rem;
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}
.confirmation-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.confirmation-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.confirmation-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.confirmation-form input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.2);
}

/* Custom File Input */
.confirmation-form input[type="file"] {
    display: none;
}
.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #f0f0f5;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.file-upload-label:hover {
    background-color: #e5e5ea;
}
.file-upload-label i {
    color: var(--primary-accent);
}
.file-name {
    margin-left: 15px;
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

/* Submit Button with Spinner */
.submit-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-accent);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}
.submit-button:hover {
    background-color: #590fa8;
    transform: translateY(-3px);

}
.submit-button:disabled {
    background-color: #7b32e7;
    cursor: not-allowed;
}

.submit-button .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.submit-button.loading .spinner {
    display: block;
}
.submit-button.loading .btn-text-text {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#form-message {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    display: none;
}
#form-message.success {
    background-color: #d1fae5;
    color: #065f46;
}
#form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
}

/* 6.3. FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.8rem;
    font-weight: var(--heading-font-weight);
    text-align: center;
    margin-bottom: 20px;
}

.faq-section .section-subtitle {
    text-align: center;
    color: var(--text-color-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: margin 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: #d0d5dd;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-header i {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-color-secondary);
    line-height: 1.6;
}

.accordion-content p {
    padding: 0 25px 20px 25px;
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.accordion-item.active {
    border-color: var(--primary-accent);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(135deg);
}

/* 6.4. Blog Page (Listing) */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 3.5rem;
    font-weight: var(--heading-font-weight);
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-link {
    display: block;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    color: var(--primary-accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: var(--primary-accent);
}

.card-excerpt {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-color-secondary);
}

/* 6.5. Blog Article (Single Post) */
.article-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--card-background);
    padding: 40px 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.article-header .category {
    display: inline-block;
    background-color: #E9D7FE;
    color: var(--primary-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.article-header h1 {
    font-size: 3rem;
    font-weight: var(--heading-font-weight);
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #344054;
}

.article-body p { margin-bottom: 1.5em; }
.article-body h2 { font-size: 1.8rem; font-weight: 700; margin-top: 2.5em; margin-bottom: 1em; line-height: 1.3; }
.article-body h3 { font-size: 1.4rem; font-weight: 700; margin-top: 2em; margin-bottom: 0.8em; }
.article-body a { color: var(--primary-accent); text-decoration: none; font-weight: 600; border-bottom: 2px solid #E9D7FE; transition: all 0.2s ease; }
.article-body a:hover { background-color: #E9D7FE; }
.article-body ul, .article-body ol { margin-bottom: 1.5em; padding-left: 25px; }
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote { margin: 2em 0; padding: 1em 1.5em; border-left: 4px solid var(--primary-accent); background-color: #f9f9fb; font-style: italic; font-size: 1.2rem; font-weight: 500; color: var(--text-color); }

/* 
================================================== 
    7. Widgets (Go To Top Button)
================================================== 
*/
@keyframes pulse-glow {
    0% { box-shadow: 0 0 8px rgba(127, 86, 217, 0.5), 0 0 10px rgba(127, 86, 217, 0.4); }
    70% { box-shadow: 0 0 25px 10px rgba(127, 86, 217, 0.7), 0 0 30px 15px rgba(127, 86, 217, 0.6); }
    100% { box-shadow: 0 0 8px rgba(127, 86, 217, 0.5), 0 0 10px rgba(127, 86, 217, 0.4); }
}

#goToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--primary-accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse-glow 2.5s infinite ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s ease-out;
}

#goToTopBtn:hover {
    transform: scale(1.1);
}

#goToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 
================================================== 
    8. Responsive Styles
================================================== 
*/
@media (max-width: 992px) {
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        order: 1;
        text-align: center;
    }
    .hero-visual {
        order: 2;
    }
    .hero-buttons {
        justify-content: center;
    }

    /* Blog Page */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* General Layout */
    section {
        padding: 60px 0;
    }
    .mouse-tracker-glow {
        display: none;
    }

    /* Header */
    .nav-links,
    .cta-button {
        display: none;
    }
    .navbar {
        gap: 180px;
        justify-content: space-between;
        
    }
      .menu-toggle {
        display: block; /* Show the hamburger icon */
    }
    /*blob*/
    #blob1, #blob2 {
        width: 250px;  
        height: 250px;
        filter: blur(100px);
    }
    
    #blob2{
    right: -8px;
    }
    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .footer-left {
        flex-direction: column;
        gap: 15px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }

    /* Pricing Section */
    .pricing-section h1 {
        font-size: 2.5rem;
    }

    /* FAQ Section */
    .faq-section h2 {
        font-size: 2rem;
    }

    /* Blog Pages */
    .blog-header h1 {
        font-size: 2.5rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .article-container {
        padding: 25px;
    }
    .article-header h1 {
        font-size: 2.2rem;
    }
    .article-body {
        font-size: 1rem;
    }
}