:root {
    /* Color Palette */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-gray-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: var(--spacing-md) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

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

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

.access-link {
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    background: #000000;
    padding: var(--spacing-3xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    color: white;
}

.hero-label {
    font-size: 1rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.hero-label .faded {
    color: #4a5568;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: white;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #a0aec0;
    max-width: 600px;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Interactive Tags */
.tag {
    position: absolute;
    background: white;
    color: var(--text-primary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tag-1 {
    top: 10%;
    left: -5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tag-2 {
    top: 30%;
    left: 15%;
    z-index: 2;
}

.tag-3 {
    top: 50%;
    right: -5%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Profile Stack */
.profile-stack {
    position: absolute;
    top: 15%;
    right: -10%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-avatar:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.hero-trust {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.how-it-works p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

.video-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.video-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Products Section */
.products {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
    background: var(--bg-gray-light);
}

.category-section {
    margin-bottom: var(--spacing-3xl);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.category-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

/* Product Cards */
.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.6;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dev {
    background: var(--accent-orange);
}

.badge-new {
    background: var(--primary-blue);
}

.product-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.2s ease;
}

.product-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.disclaimer-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.disclaimer-card h5 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.disclaimer-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Plans Section */
.plans {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-gray-light);
    text-align: center;
}

.plans h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.plans p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.custom-service {
    margin-top: var(--spacing-xl);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer-column p {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

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

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .visual-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .tag {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .profile-stack {
        right: -5%;
        gap: 0.375rem;
    }

    .profile-avatar {
        width: 40px;
        height: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-2xl) 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }
}

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

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-out;
}

/* Custom Pricing Section Styles */
#custom-pricing-section .pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

#custom-pricing-section .pricing-card {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    display: flex;
    flex-direction: column;
    color: #fff;
    transition: transform 0.2s;
}

#custom-pricing-section .pricing-card:hover {
    border-color: #555;
    transform: translateY(-5px);
}

#custom-pricing-section .pricing-header {
    margin-bottom: 20px;
}

#custom-pricing-section .plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#custom-pricing-section .plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

#custom-pricing-section .price-cycle {
    font-size: 0.875rem;
    color: #888;
    font-weight: 400;
}

#custom-pricing-section .plan-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    min-height: 3em;
}

#custom-pricing-section .pricing-btn {
    display: block;
    background-color: #dbeafe;
    /* Light blue */
    color: #1e40af;
    /* Dark blue text */
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    transition: background-color 0.2s;
}

#custom-pricing-section .pricing-btn:hover {
    background-color: #bfdbfe;
}

#custom-pricing-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

#custom-pricing-section .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #eee;
}

#custom-pricing-section .check-icon {
    font-weight: bold;
    font-size: 1.1rem;
}

#custom-pricing-section .card-footer-note {
    font-size: 0.75rem;
    color: #777;
    margin-top: auto;
    line-height: 1.4;
}

@media (max-width: 768px) {
    #custom-pricing-section .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    #custom-pricing-section .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Marketing System Section Styles */
#marketing-system-section {
    background-color: #000;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.ms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ms-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ms-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    /* Grey similar to reference */
    margin-bottom: 40px;
    line-height: 1.6;
}

.ms-cta-wrapper {
    margin-bottom: 60px;
}

.ms-cta-btn {
    display: inline-block;
    background-color: #dbeafe;
    /* Consistently reusing the light blue from prices */
    color: #1e40af;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.2s;
    margin-bottom: 10px;
}

.ms-cta-btn:hover {
    transform: translateY(-2px);
    background-color: #bfdbfe;
}

.ms-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 10px;
}

.ms-image-wrapper {
    width: 100%;
    max-width: 1000px;
    /* Constrain max width for large screens */
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    /* Slight background for the image container if needed */
    border: 1px solid #222;
}

.ms-diagram {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .ms-title {
        font-size: 2.2rem;
    }

    #marketing-system-section {
        padding: 60px 20px;
    }
}

/* Styled Marketing System Section - G4 Identity */
#marketing-system-section {
    background: radial-gradient(circle at center top, rgba(37, 99, 235, 0.15) 0%, #000 60%);
    padding: 100px 20px;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.ms-title {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    margin-bottom: 24px;
}

.ms-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.ms-cta-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    padding: 16px 40px;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.ms-cta-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

.ms-image-wrapper {
    background: #0f172a;
    border: 1px solid #1e293b;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.1);
    border-radius: 24px;
    padding: 10px;
    position: relative;
}

/* Add a glowing border effect to the image wrapper */
.ms-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(16, 185, 129, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

/* Audience Page Hero Section */
#audience-hero {
    background-color: #000;
    color: #fff;
    padding: 20px 20px 60px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.audience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 10px 0;
}

.audience-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.audience-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.audience-user-info {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.2;
}

.audience-label {
    color: #9ca3af;
    font-size: 0.75rem;
}

.audience-username {
    font-weight: 500;
    color: #fff;
}

.audience-header-cta {
    background-color: #dbeafe;
    /* Light blue from design */
    color: #2563eb;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.audience-header-cta:hover {
    background-color: #bfdbfe;
}

.audience-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.audience-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.audience-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

.audience-video-wrapper {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    /* Constrain video width */
    margin: 0 auto;
}

.audience-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.audience-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .audience-title {
        font-size: 2.5rem;
    }

    .audience-header {
        margin-bottom: 40px;
    }
}

/* Audience Features Section */
#audience-features {
    background-color: #000;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: #0a0a0a;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #404040;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #fff;
    margin-bottom: 24px;
    /* Optional: Add a subtle glow or background for the icon */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.feature-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Audience Pricing Section */
#audience-pricing {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
}

.pricing-title-aud {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: #fff;
}

.pricing-grid-aud {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-grid-aud {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card-aud {
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

/* Specific Card Styles */
.card-free {
    background-color: #262626;
    /* Dark Grey Filled */
    border: 1px solid #262626;
}

.card-pro,
.card-enterprise {
    background-color: #000;
    border: 1px solid #404040;
}

.pc-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.pc-currency {
    font-size: 2rem;
    font-weight: 700;
}

.pc-period {
    font-size: 0.8rem;
    color: #a3a3a3;
}

.pc-desc {
    font-size: 0.9rem;
    color: #d4d4d4;
    margin-bottom: 24px;
    line-height: 1.4;
    min-height: 40px;
}

.pc-btn {
    display: block;
    width: 100%;
    background-color: #e5e5e5;
    /* Light grey/white button */
    color: #000;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: background-color 0.2s;
}

.pc-btn:hover {
    background-color: #fff;
}

.pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #d4d4d4;
}

.pc-check {
    color: #fff;
    font-weight: bold;
}

.pc-note {
    font-size: 0.75rem;
    color: #a3a3a3;
    line-height: 1.4;
    border-top: 1px solid #404040;
    padding-top: 16px;
}


/* Audience Footer Section */
#audience-footer {
    background-color: #e5e5e5;
    /* Light Background */
    color: #171717;
    padding: 80px 20px 40px;
    font-size: 0.9rem;
}

.footer-grid-aud {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-grid-aud {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid-aud {
        grid-template-columns: 1.5fr 1fr 0.5fr 1.5fr;
    }
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: #404040;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #525252;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

.footer-desc {
    color: #525252;
    margin-top: 16px;
    line-height: 1.5;
    max-width: 300px;
}

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

.footer-social-icon {
    width: 20px;
    height: 20px;
    color: #171717;
}

.footer-logo-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    /* G4 Blue */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-portfolio-avatars {
    display: flex;
    margin-top: 16px;
}

.portfolio-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    margin-left: -10px;
}

.portfolio-avatar:first-child {
    margin-left: 0;
}

/* Responsive Image Reset */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure Elementor images are responsive */
.elementor-widget-image img {
    max-width: 100%;
    height: auto;
}

/* Fix font size on mobile for pricing title if needed */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem !important;
    }

    .pricing-container {
        flex-direction: column;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    /* Push to right */
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

.mobile-menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.mobile-menu-overlay.active {
    width: 100%;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.mobile-nav-content a {
    padding: 15px;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    display: block;
    transition: 0.3s;
}

.mobile-nav-content a:hover {
    color: #f1f1f1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: #fff;
}

.mobile-flags {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.mobile-flags img {
    width: 40px;
    height: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* Hide desktop elements on mobile */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide the original Elementor widgets on mobile */
    .elementor-element-4af04f6,
    .elementor-element-c0c8ef9 {
        display: none !important;
    }
}/* Fix spacing between stacked cards on mobile */
@media (max-width: 767px) {
    .elementor-element.e-con-boxed.e-con.e-child {
        margin-bottom: 20px !important;
    }
}/* Refined spacing fix for mobile */
@media (max-width: 767px) {

    /* Ensure grids have gap on mobile */
    .e-grid>.e-con-inner {
        gap: 20px !important;
        row-gap: 20px !important;
    }

    /* Ensure stacked flex containers have spacing */
    .e-con.e-child {
        margin-bottom: 20px !important;
    }
}

/* Turn white dividers black */
.elementor-divider-separator {
    border-color: #000000 !important;
}

/* Override any specific white borders */
hr {
    border-color: #000000 !important;
    background-color: #000000 !important;
}/* Refined spacing fix for mobile */
@media (max-width: 767px) {

    /* Target the specific parent containers of BI and Finance */
    /* BI Container parent */
    .elementor-element-cd99659 {
        margin-bottom: 30px !important;
        padding-bottom: 20px !important;
        border-bottom: 1px solid #000;
        /* Add visual separation if needed, or just space */
    }

    /* All direct children of the grid container should have spacing */
    .elementor-element-76bf9dd .e-con-inner>.elementor-element {
        margin-bottom: 30px !important;
    }
}

/* Force black dividers/borders */
.elementor-widget-divider,
.elementor-divider-separator,
.elementor-widget-heading .elementor-heading-title {
    border-color: #000000 !important;
}

/* Fix any hr elements */
hr {
    border-top-color: #000000 !important;
    background-color: #000000 !important;
}/* Fix mobile header flags size and alignment */
@media (max-width: 767px) {

    .elementor-element-dd80007 img,
    .elementor-element-2687cc3 img {
        width: 30px !important;
        height: auto !important;
    }

    .elementor-element-dd80007,
    .elementor-element-2687cc3 {
        width: auto !important;
        /* Prevent taking full width */
        margin-right: 10px !important;
        /* Spacing between flags */
        display: flex !important;
        align-items: center !important;
    }
}