/* Modern WordPress-Style Full-Width Design for Solotones */
/* Version 10.3.2 - Android matches iPhone/Desktop exactly */

/* CSS Variables - Modern Clean Theme */
:root {
    --primary-dark: #000000;
    --primary-white: #ffffff;
    --text-dark: #000000;
    --text-light: #1a1a1a;
    --text-muted: #555555;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --bg-dark: #000000;
    --bg-medium-dark: #0a0a0a;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-light-gray: #fafafa;
    --accent-blue: #1e90ff;
    --accent-cyan: #00ffff;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 3rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;
    --max-content-width: 1200px;
    --max-wide-width: 1400px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Systemia', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    background: var(--bg-light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

/* Typography - Bebas Neue for Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
}

h3 {
    font-size: 2rem;
    line-height: 1.3;
}

p {
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 1rem;
    color: #ffffff;
}

/* Full-Width Layout System */
.page-flow {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.section {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Content Containers - Use sparingly for text-heavy sections */
.section-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-content-wide {
    max-width: var(--max-wide-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Full-width sections with internal padding */
.section-full {
    width: 100%;
    padding: var(--spacing-lg) 2rem;
}

/* Header - Clean White, Full Width */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000 !important;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    height: 80px;
    padding-top: env(safe-area-inset-top);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.dashboard-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1e90ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.dashboard-logo:hover {
    opacity: 0.8;
}

/* Navigation - Modern Clean */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons - Modern WordPress Style */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--primary-white);
    box-shadow: 0px 0px 3.1px 0px rgba(0, 0, 0, 0.90),
                0px 0px 26.4px 0px rgba(0, 0, 0, 0.40);
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.95),
                0px 0px 40px 0px rgba(0, 0, 0, 0.50);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--primary-white);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

/* Hero Section - Full Width VIDEO BACKGROUND */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 0;
    overflow: hidden;
}

/* Video Background Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0 !important;
    pointer-events: none;
}

/* Video overlay for opacity/darkening - LIGHTER */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1 !important;
    pointer-events: none;
}

/* Ensure content is above video */
.hero-content {
    position: relative;
    z-index: 10 !important;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    z-index: 10 !important;
}

.title-text {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.tm-symbol {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 0.05em;
    opacity: 0.8;
}

.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    background: linear-gradient(135deg, #1e90ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 10 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10 !important;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10 !important;
}

/* Section Base Styles - Full Width */
.section {
    width: 100%;
    padding: var(--spacing-lg) 0;
    position: relative;
    margin: 0;
}

.section-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.section-content-wide {
    max-width: var(--max-wide-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.section-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* White background sections - ensure black text with !important to override global white text */
.pricing .section-title,
.pricing .section-subtitle,
.pricing h2,
.pricing h3,
.pricing p,
.pricing li,
.pricing .pricing-title,
.pricing .pricing-price,
.pricing .pricing-period {
    color: #000000 !important;
}

.freqipedia .section-title,
.freqipedia .section-subtitle,
.freqipedia h2,
.freqipedia h3,
.freqipedia p,
.freqipedia .research-content h3,
.freqipedia .research-content p {
    color: #000000 !important;
}

.ad-module-section .section-title,
.ad-module-section .section-subtitle,
.ad-module-section h2,
.ad-module-section h3,
.ad-module-section p {
    color: #000000 !important;
}

/* Black background sections - ensure white text */
.features .section-title,
.features .section-subtitle,
.features h2,
.features h3,
.features p,
.features li {
    color: #ffffff;
}

.cta .section-title,
.cta .section-subtitle,
.cta h2,
.cta p {
    color: #ffffff;
}

.faq .section-title,
.faq .section-subtitle,
.faq h2 {
    color: #ffffff;
}

/* Problem & Solution Sections - Sophisticated Multi-Layer Gradient */
.problem {
    background:
        radial-gradient(ellipse at top left, rgba(20, 20, 20, 0.3) 0%, rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at bottom right, rgba(15, 15, 15, 0.2) 0%, rgba(0, 0, 0, 1) 50%),
        linear-gradient(135deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(2, 2, 2, 1) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(2, 2, 2, 1) 75%,
            rgba(5, 5, 5, 1) 100%),
        #000000;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.solution {
    background:
        radial-gradient(ellipse at top right, rgba(22, 22, 22, 0.3) 0%, rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at bottom left, rgba(18, 18, 18, 0.2) 0%, rgba(0, 0, 0, 1) 50%),
        linear-gradient(135deg,
            rgba(8, 8, 8, 1) 0%,
            rgba(3, 3, 3, 1) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(3, 3, 3, 1) 75%,
            rgba(8, 8, 8, 1) 100%),
        #000000;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* EXTREME CONTRAST mesh gradient overlay - darker grey gleam */
.problem::before,
.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(60, 60, 60, 0.6) 0%, rgba(35, 35, 35, 0.3) 15%, rgba(0, 0, 0, 1) 35%),
        radial-gradient(circle at 80% 70%, rgba(55, 55, 55, 0.5) 0%, rgba(30, 30, 30, 0.25) 15%, rgba(0, 0, 0, 1) 35%),
        radial-gradient(circle at 50% 50%, rgba(50, 50, 50, 0.4) 0%, rgba(25, 25, 25, 0.2) 20%, rgba(0, 0, 0, 1) 50%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

/* EXTREME CONTRAST diagonal accent gradient - darker grey gleam */
.problem::after,
.solution::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 35%,
        rgba(40, 40, 40, 0.3) 50%,
        rgba(60, 60, 60, 0.5) 60%,
        rgba(55, 55, 55, 0.4) 70%,
        rgba(35, 35, 35, 0.25) 80%,
        rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Solodome Sponsor Section - Small Black Divider */
.solodome-sponsor {
    background: #000000;
    width: 100%;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.sponsor-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.sponsor-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}

.sponsor-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.sponsor-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.problem h2,
.problem .section-title,
.solution h2,
.solution .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.problem .section-subtitle,
.solution .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 2;
}

.problem-container, .solution-container {
    background: transparent;
    padding: 0 3rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: var(--max-content-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.problem-container h2,
.problem-container .section-title,
.problem-container p,
.problem-container li,
.solution-container h2,
.solution-container .section-title,
.solution-container p,
.solution-container li {
    color: #ffffff;
}

.problem-container .section-header-image,
.solution-container .section-header-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: all 0.4s ease;
    margin-bottom: 3rem;
    border-radius: 0;
}

.problem-container .section-header-image:hover,
.solution-container .section-header-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.25);
}

.section-header-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.section-header-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25),
                0 6px 16px rgba(0, 0, 0, 0.2);
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.problem-grid,
.solution-grid {
    margin-top: 2rem;
}

/* Features Section - Full Width Black Background */
.features {
    background: #000000;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.features h2,
.features .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.treatment-item {
    position: sticky;
    top: 0;
    padding: 40px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #000000;
    cursor: pointer;
    max-height: 90vh;
    overflow: hidden;
    opacity: 1;
}

.treatment-item:hover {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.treatment-item.expanded {
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    z-index: 10;
    background: #000000;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.treatment-header:hover {
    opacity: 0.9;
}

.treatment-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.short-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.75rem;
    display: block;
    line-height: 1.8;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.treatment-item.expanded .short-description {
    display: none;
}

.expanded-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, margin 0.5s ease;
    margin-top: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.85);
}

.treatment-item.expanded .expanded-content {
    max-height: 800px;
    opacity: 1;
    margin-top: 30px;
    pointer-events: auto;
    overflow-y: auto;
    padding-bottom: 20px;
}

.expanded-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.expanded-content h3, .expanded-content h4 {
    color: #ffffff;
}

.expand-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.treatment-item.expanded .expand-icon {
    background: rgba(255, 255, 255, 0.2);
}

.treatment-item.expanded .expand-icon svg {
    transform: rotate(180deg);
}

.expand-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

/* Testimonials - Full Width White Background with Wispy Gleam Effects */
.social-proof {
    background: #ffffff !important;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Soft wispy gleam clouds */
.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 600px at 85% 20%, rgba(200, 200, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 700px 500px at 15% 60%, rgba(220, 220, 220, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 600px 700px at 70% 80%, rgba(210, 210, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 15s ease-in-out infinite;
}

/* Subtle white shimmer overlay */
.social-proof::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 900px 400px at 30% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse 500px 600px at 90% 70%, rgba(240, 240, 240, 0.3) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 20s ease-in-out infinite reverse;
}

@keyframes wispyFloat {
    0%, 100% { opacity: 0.5; transform: translateX(0) translateY(0); }
    50% { opacity: 0.8; transform: translateX(30px) translateY(-20px); }
}

.social-proof h2,
.social-proof .section-title {
    color: #000000 !important;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.social-proof .section-subtitle {
    color: var(--text-light) !important;
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid #000000;
}

.testimonial:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: #000000;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    text-transform: none;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonial-toggle {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.testimonial-toggle:hover {
    opacity: 0.7;
}

/* Pricing Section - Full Width White Background with Wispy Gleam Effects */
.pricing {
    background: #ffffff !important;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Soft wispy gleam clouds */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 750px 650px at 20% 30%, rgba(215, 215, 215, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 850px 550px at 80% 70%, rgba(205, 205, 205, 0.16) 0%, transparent 50%),
        radial-gradient(ellipse 650px 750px at 50% 90%, rgba(225, 225, 225, 0.11) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 18s ease-in-out infinite;
}

/* Subtle white shimmer overlay */
.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 700px 500px at 60% 25%, rgba(255, 255, 255, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse 600px 650px at 25% 75%, rgba(245, 245, 245, 0.28) 0%, transparent 48%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 22s ease-in-out infinite reverse;
}

.pricing h2,
.pricing .section-title {
    color: #000000 !important;
    position: relative;
    z-index: 1;
}

.pricing .section-subtitle {
    color: var(--text-light) !important;
    position: relative;
    z-index: 1;
}

.pricing-grid,
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    border-color: #000000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25),
                0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header h3,
.pricing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark) !important;
}

.pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-dark) !important;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-price span {
    font-size: 1.25rem;
    color: var(--text-light) !important;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-light) !important;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    width: 100%;
    margin-top: 1rem;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #ffffff;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.15rem;
    color: #000000 !important;
    font-weight: 400;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.pricing-features .check {
    color: #16a34a;
    margin-right: 0.5rem;
}

/* CTA Section - Full Width Black Background */
.cta {
    background: #000000;
    width: 100%;
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: #ffffff;
}

.cta .section-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.cta h2 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.7;
}

.cta .cta-buttons {
    justify-content: center;
}

/* Research/Articles Section - Full Width White Background with Wispy Gleam Effects */
.freqipedia {
    background: #ffffff !important;
    width: 100%;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Soft wispy gleam clouds */
.freqipedia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 900px 700px at 75% 35%, rgba(210, 210, 210, 0.13) 0%, transparent 50%),
        radial-gradient(ellipse 650px 800px at 25% 65%, rgba(200, 200, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 750px 600px at 60% 15%, rgba(220, 220, 220, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 17s ease-in-out infinite;
}

/* Subtle white shimmer overlay */
.freqipedia::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 550px at 40% 50%, rgba(255, 255, 255, 0.38) 0%, transparent 42%),
        radial-gradient(ellipse 550px 700px at 85% 80%, rgba(248, 248, 248, 0.3) 0%, transparent 46%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 21s ease-in-out infinite reverse;
}

.freqipedia h2,
.freqipedia .section-title {
    color: #000000 !important;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.freqipedia .section-subtitle {
    color: var(--text-light) !important;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}





.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.research-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #000000;
    position: relative;
    z-index: 1;
}

.research-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25),
                0 4px 16px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.research-thumbnail {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #1a1a1a;
    position: relative;
}

.research-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research-card:hover .research-thumbnail img {
    transform: scale(1.05);
}

.research-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.research-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #000000 !important;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.research-content p {
    color: #000000 !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
    font-weight: 400;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000 !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.research-link:hover {
    gap: 0.75rem;
}

.research-link i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .research-thumbnail {
        height: 200px;
    }
}

/* Affiliate Section - HIGH CONTRAST */
.affiliate-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.affiliate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.affiliate-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.affiliate-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.affiliate-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}

.affiliate-section .btn {
    background: #ffffff;
    color: #1a1a2e;
    border: none;
    font-weight: 700;
}

.affiliate-section .btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

    .affiliate-description {
        font-size: 1rem;
    }
}

/* Ad Module Section - White Background with Wispy Gleam Effects */
.ad-module-section {
    background: #ffffff !important;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Soft wispy gleam clouds */
.ad-module-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 820px 680px at 65% 25%, rgba(208, 208, 208, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse 700px 750px at 30% 70%, rgba(218, 218, 218, 0.13) 0%, transparent 50%),
        radial-gradient(ellipse 600px 650px at 85% 85%, rgba(212, 212, 212, 0.11) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 16s ease-in-out infinite;
}

/* Subtle white shimmer overlay */
.ad-module-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 750px 600px at 50% 35%, rgba(255, 255, 255, 0.36) 0%, transparent 44%),
        radial-gradient(ellipse 650px 700px at 20% 80%, rgba(250, 250, 250, 0.32) 0%, transparent 47%);
    pointer-events: none;
    z-index: 0;
    animation: wispyFloat 19s ease-in-out infinite reverse;
}

.ad-module-section .section-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ad-module-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.ad-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ad-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(0, 0, 0, 0.08);
}

.ad-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
                0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.ad-card-header {
    padding: 1.5rem;
    background: #1a1a1a;
    border-bottom: 2px solid #000000;
}

.ad-card-header h4 {
    color: #ffffff;
}



.ad-card-image-wrapper {
    position: relative;
    width: 100%;
    background: #1a1a1a;
}

.ad-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ad-card:hover .ad-card-image img {
    transform: scale(1.05);
}

.ad-card-content {
    padding: 1.5rem;
    flex: 1;
}

.ad-card-content p {
    color: #000000;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
}

.ad-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary-dark);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ad-cta-button:hover {
    background: #0a0a0a;
}

/* Instagram Card Specific Styles */
.instagram-preview-static {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.instagram-icon {
    font-size: 4rem;
    color: #ffffff;
}

.instagram-handle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.instagram-button {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.instagram-button:hover {
    background: linear-gradient(135deg, #6a2d96 0%, #d41818 50%, #d99638 100%);
}

@media (max-width: 768px) {
    .ad-module-section {
        padding: 3rem 0;
    }

    .ad-module-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ad-module-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .ad-card-image {
        height: 250px;
    }

    .ad-card-header h4 {
        font-size: 1.5rem;
    }

    .instagram-icon {
        font-size: 3rem;
    }

    .instagram-handle {
        font-size: 1.5rem;
    }
}

/* FAQ Section - PURE BLACK */
.faq {
    background: #000000;
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.faq h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12),
                0 2px 6px rgba(0, 0, 0, 0.08);
    border: 2px solid #000000;
    position: relative;
    z-index: 1;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.25rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #000000;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 400;
}

/* Footer - HIGH CONTRAST */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

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

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

.footer-disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem;
    z-index: 999 !important;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
}

/* Modals - Keep existing functionality */
.modal,
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000 !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active,
.auth-modal:not(.hidden) {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    border: 2px solid #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 2px solid #000000;
    text-align: center;
}

.modal-header h2,
.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0;
    letter-spacing: 1px;
}

.modal-body {
    padding: 2.5rem 2rem;
}

.modal-body .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
}

.modal-body .text-center {
    text-align: center;
    margin-top: 1.5rem;
}

.modal-body .text-center a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.modal-body .text-center a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #000000;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-weight: bold;
}

.modal-close:hover {
    background: #333333;
    transform: scale(1.1);
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #000000;
    font-size: 1.05rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #000000;
    font-size: 1.05rem;
}

.form-input,
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000000;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    transition: var(--transition);
    background: #ffffff;
    color: #000000;
}

.form-input:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.form-input::placeholder,
.form-group input::placeholder {
    color: #666666;
}

/* Auth Form Specific Styles */
.auth-form {
    padding: 0 2rem 2rem 2rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #000000;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.link-button {
    background: none;
    border: none;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.95rem;
    padding: 0;
    transition: opacity 0.3s ease;
}

.link-button:hover {
    opacity: 0.7;
}

.form-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #cccccc;
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    background: #ffffff;
    padding: 0 1rem;
    color: #666666;
    font-size: 0.9rem;
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
}

.auth-switch p {
    color: #000000;
    font-size: 1rem;
    margin: 0;
}

.form-icon {
    display: none;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #000000;
}

.form-group {
    position: relative;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xs: 0.75rem;
        --spacing-sm: 1.5rem;
        --spacing-md: 2rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }

    body {
        padding-top: 0;
        line-height: 1.6;
    }

    /* Mobile navbar: hamburger always visible, background/logo appear on scroll */
    .header {
        height: 70px;
        background: transparent !important;
        border-bottom: none !important;
        transition: background 0.3s ease, border-bottom 0.3s ease;
    }

    .header.at-top {
        background: transparent !important;
        border-bottom: none !important;
    }

    .header.scrolled {
        background: #ffffff !important;
        border-bottom: 1px solid var(--border-light) !important;
    }

    .header-content {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #ffffff;
        cursor: pointer;
        transition: color 0.3s ease;
        z-index: 1001;
        position: relative;
    }

    /* When navbar is visible (scrolled), hamburger turns black */
    .header.scrolled .mobile-nav-toggle {
        color: #000000;
    }

    /* When navbar is hidden (at-top), hamburger stays white */
    .header.at-top .mobile-nav-toggle {
        color: #ffffff;
    }

    .auth-buttons {
        display: none;
    }

    .dashboard-logo {
        font-size: 1.15rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .header.scrolled .dashboard-logo {
        opacity: 1;
    }

    /* Hero: full height, title in top third, buttons slightly up, extends to top including safe area */
    .hero {
        min-height: 100vh;
        min-height: calc(100vh + env(safe-area-inset-top));
        margin-top: 0;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .hero-content {
        padding: 0 1.5rem;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex: 1;
    }

    /* Title and subtitle in top third (middle of top third) */
    .hero-title,
    .hero-tagline,
    .hero-subtitle {
        margin-top: calc(16.67vh + env(safe-area-inset-top));
        margin-bottom: auto;
    }

    .hero-tagline {
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        margin-top: 0.5rem;
    }

    /* Buttons positioned slightly up from bottom */
    .cta-buttons {
        margin-top: auto;
        margin-bottom: calc(15vh + env(safe-area-inset-bottom));
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
        letter-spacing: 0.5px;
    }

    .hero-tagline {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 3rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-content,
    .section-content-wide {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn,
    .btn-large {
        width: 100%;
        justify-content: center;
    }

    /* Hero buttons - bigger size on mobile */
    #heroMobileButtons .btn-large,
    #heroMobileButtons .btn,
    #heroSignupButtons .btn-large,
    #heroSignupButtons .btn,
    .hero .cta-buttons .btn-large,
    .hero .cta-buttons .btn {
        padding: 0.85rem 1.75rem !important;
        font-size: 1rem !important;
        max-width: 300px !important;
        min-width: 0 !important;
        width: 100% !important;
        border-radius: 6px !important;
    }

    /* Secondary button - almost fully opaque on mobile for readability */
    .btn-secondary {
        background: rgba(255, 255, 255, 1.0) !important;
        color: rgba(0, 0, 0, 1.0) !important;
    }

    /* Signup buttons container - only when NOT hidden */
    #heroSignupButtons:not(.hidden) {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 4rem !important;
    }

    /* Mobile buttons container - only when NOT hidden */
    #heroMobileButtons:not(.hidden) {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 4rem !important;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Section Header Images - Almost Full Width on Mobile */
    .section-header-image {
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
        border-radius: 0;
        margin-bottom: 1.5rem;
    }

    .header-img {
        border-radius: 0;
    }

    .problem-container, .solution-container {
        padding: 0 1.5rem;
    }

    /* Reduce spacing between sections on mobile */
    .problem, .solution, .features, .social-proof, .pricing, .faq, .cta, .freqipedia {
        padding: 2rem 0;
    }

    .problem-list li, .solution-list li {
        line-height: 1.5;
    }

    .treatment-item {
        padding: 30px 20px;
    }

    .treatment-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .short-description {
        line-height: 1.5;
        font-size: 1rem;
    }

    /* Mobile: Make expand icon larger and more visible */
    .expand-icon {
        width: 44px;
        height: 44px;
        background: rgba(30, 144, 255, 0.15);
        border: 2px solid rgba(30, 144, 255, 0.4);
        flex-shrink: 0;
    }

    .expand-icon svg {
        width: 22px;
        height: 22px;
    }

    .expand-icon:hover {
        background: rgba(30, 144, 255, 0.2);
    }

    .treatment-item.expanded .expand-icon {
        background: rgba(30, 144, 255, 0.25);
        border-color: rgba(30, 144, 255, 0.5);
    }

    /* Mobile: Better spacing for treatment header */
    .treatment-header {
        gap: 15px;
    }

    .treatment-header > div:first-child {
        flex: 1;
        min-width: 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-text {
        line-height: 1.5;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-features li {
        line-height: 1.5;
    }

    .research-content p {
        line-height: 1.5;
    }

    .ad-card-content p {
        line-height: 1.5;
    }

    .cta p {
        line-height: 1.5;
    }

    .faq-question {
        line-height: 1.4;
    }

    .faq-answer p {
        line-height: 1.5;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Form row stacks on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Modal content adjustments for mobile */
    .modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

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

    .auth-form {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.5px;
    }

    .treatment-item {
        padding: 40px 40px;
    }

    .problem-container, .solution-container {
        padding: 0 2.5rem;
    }
}

/* Animations - FASTER & SMOOTHER */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.4s linear;
}

/* Scroll Animations - SMOOTH CONSTANT SPEED */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s linear, transform 0.6s linear;
}

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

/* Additional Flashy Animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}



@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Shimmer effect on hover for cards */
.pricing-card,
.research-card,
.ad-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.pricing-card:hover::before,
.research-card:hover::before,
.ad-card:hover::before,
.testimonial-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    animation: shimmer 1.2s;
    z-index: 1;
}

/* Floating animation for primary CTA buttons */
.hero .btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Pulse effect for important CTAs */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

/* TM Symbol */
.tm-symbol {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 0.1em;
}

/* ADA Toggle Button */
.ada-toggle-button {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.ada-toggle-button:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-dark);
}

.ada-label {
    font-weight: 600;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Modern WordPress-Style Enhancements */

/* Remove default margins on sections */
main {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Ensure all sections are truly full-width */
section {
    width: 100%;
    position: relative;
}

/* Override for specific sections - explicit backgrounds */
.hero,
.features,
.cta,
.faq,
.solodome-sponsor {
    background: #000000 !important;
}

/* Problem and Solution have their own multi-layer gradient backgrounds - don't override */
.problem {
    background:
        radial-gradient(ellipse at top left, rgba(20, 20, 20, 0.3) 0%, rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at bottom right, rgba(15, 15, 15, 0.2) 0%, rgba(0, 0, 0, 1) 50%),
        linear-gradient(135deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(2, 2, 2, 1) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(2, 2, 2, 1) 75%,
            rgba(5, 5, 5, 1) 100%),
        #000000 !important;
}

.solution {
    background:
        radial-gradient(ellipse at top right, rgba(22, 22, 22, 0.3) 0%, rgba(0, 0, 0, 1) 50%),
        radial-gradient(ellipse at bottom left, rgba(18, 18, 18, 0.2) 0%, rgba(0, 0, 0, 1) 50%),
        linear-gradient(135deg,
            rgba(8, 8, 8, 1) 0%,
            rgba(3, 3, 3, 1) 25%,
            rgba(0, 0, 0, 1) 50%,
            rgba(3, 3, 3, 1) 75%,
            rgba(8, 8, 8, 1) 100%),
        #000000 !important;
}

/* Modern spacing system */
.section-spacing-sm {
    padding: var(--spacing-sm) 0;
}

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

.section-spacing-lg {
    padding: var(--spacing-lg) 0;
}

.section-spacing-xl {
    padding: var(--spacing-xl) 0;
}

/* Content width utilities */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-standard {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.content-wide {
    max-width: var(--max-wide-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.content-full {
    width: 100%;
    padding: 0;
}

/* Modern image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth transitions for all interactive elements */
a, button, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible) {
    outline: none;
}

.user-name {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.user-status {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.mobile-auth-buttons .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .ada-toggle-button {
        padding: 0.4rem;
    }

    .ada-label {
        display: none;
    }
}

/* ========================================
   ANDROID-SPECIFIC FIXES - CRITICAL
   Match iPhone/Desktop exactly
   ======================================== */

/* Remove backdrop-filter on Android for performance */
body.android-device .header,
body.android-device .mobile-nav {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Android: Header at top - TRANSPARENT like iPhone */
body.android-device .header.at-top,
body.android-device .header:not(.scrolled) {
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: none !important;
}

/* Android: Header when scrolled - WHITE like iPhone */
body.android-device .header.scrolled {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Android: Mobile nav - WHITE */
body.android-device .mobile-nav {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Android: Buttons - WHITE backgrounds */
body.android-device .btn-secondary {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Android: Modals - WHITE backgrounds */
body.android-device .modal-content {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Android: Force proper rendering - no grey tints */
body.android-device,
body.android-device * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Android images - NO brightness adjustment (Chrome Android is fine) */
body.android-device img,
body.android-device .feature-img,
body.android-device .program-card-image img,
body.android-device .section-title-img,
body.android-device .research-thumbnail img {
    /* No filter - Chrome Android renders correctly */
    filter: none !important;
    -webkit-filter: none !important;
}

/* ========================================
   SAMSUNG INTERNET SPECIFIC FIXES - CRITICAL
   Samsung Internet ignores standard CSS - force everything
   ======================================== */

/* Samsung Internet: FORCE white header - all states */
body.samsung-internet .header {
    background: #fff !important;
    background-color: #fff !important;
    background-image: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Samsung Internet: Desktop header always white */
@media (min-width: 769px) {
    body.samsung-internet .header {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
    }
}

/* Samsung Internet: Mobile header - transparent at top, white when scrolled */
@media (max-width: 768px) {
    body.samsung-internet .header {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border-bottom: none !important;
    }

    body.samsung-internet .header.scrolled {
        background: #ffffff !important;
        background-color: #ffffff !important;
        background-image: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    body.samsung-internet .header.at-top {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border-bottom: none !important;
    }
}

/* Samsung Internet: Mobile nav - PURE WHITE */
body.samsung-internet .mobile-nav {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Samsung Internet: All white sections */
body.samsung-internet .section-white,
body.samsung-internet .testimonials,
body.samsung-internet .features,
body.samsung-internet .research {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Samsung Internet: All black sections */
body.samsung-internet .section-black,
body.samsung-internet .footer {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
}

/* Samsung Internet: Buttons */
body.samsung-internet .btn-primary {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
}

body.samsung-internet .btn-secondary {
    background: rgba(255, 255, 255, 0.8) !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    background-image: none !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
}

body.samsung-internet .btn-outline {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}

/* Samsung Internet: Modals */
body.samsung-internet .modal-content {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

body.samsung-internet .modal-overlay {
    background: rgba(0, 0, 0, 0.8) !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    background-image: none !important;
}

/* Samsung Internet: Text colors */
body.samsung-internet .nav-links a {
    color: #000000 !important;
}

body.samsung-internet .mobile-nav-links a {
    color: #000000 !important;
}

body.samsung-internet .mobile-nav-toggle {
    color: #ffffff !important;
}

body.samsung-internet .header.scrolled .mobile-nav-toggle {
    color: #000000 !important;
}

/* Samsung Internet: Remove all filters and effects */
body.samsung-internet .header,
body.samsung-internet .mobile-nav,
body.samsung-internet .modal-content,
body.samsung-internet .btn {
    filter: none !important;
    -webkit-filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

/* Samsung Internet: Re-add shadows only where needed */
body.samsung-internet .btn-primary {
    box-shadow: 0px 0px 3.1px 0px rgba(0, 0, 0, 0.90), 0px 0px 26.4px 0px rgba(0, 0, 0, 0.40) !important;
}

/* Samsung Internet: Images brightness - ONLY Samsung needs this */
body.samsung-internet img,
body.samsung-internet .feature-img,
body.samsung-internet .program-card-image img,
body.samsung-internet .section-title-img,
body.samsung-internet .research-thumbnail img {
    /* Samsung Internet dims images - boost them to match Chrome */
    filter: brightness(1.3) contrast(1.15) saturate(1.1) !important;
    -webkit-filter: brightness(1.3) contrast(1.15) saturate(1.1) !important;
}

/* Mobile: Make bullet lists MUCH more compact */
@media (max-width: 768px) {
    .problem-list li,
    .solution-list li {
        padding: 0.35rem 0 !important;
        padding-left: 1.5rem !important;
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.25rem !important;
    }

    .problem-list li:before,
    .solution-list li:before {
        font-size: 0.9rem !important;
    }

    .solodome-sponsor {
        padding: 1.5rem 0;
    }

    .sponsor-content {
        padding: 0 1.5rem;
    }

    .sponsor-text {
        font-size: 0.875rem;
    }

    .sponsor-link {
        font-size: 1rem;
    }
}

/* Medium Mobile: Slightly less compact */
@media (min-width: 481px) and (max-width: 768px) {
    .problem-list li,
    .solution-list li {
        padding: 0.4rem 0 !important;
        padding-left: 1.75rem !important;
        font-size: 1.1rem !important;
        line-height: 1.45 !important;
    }

    .problem-container, .solution-container {
        padding: 0 2rem;
    }
}

/* ============================================
   NOTIFICATION SYSTEM STYLES
   ============================================ */

/* Notification Container */
.notification-container {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.notification-container.top-right {
    top: 2rem;
    right: 2rem;
}

.notification-container.top-left {
    top: 2rem;
    left: 2rem;
}

.notification-container.bottom-right {
    bottom: 2rem;
    right: 2rem;
}

.notification-container.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

/* Notification Card */
.advanced-notification {
    pointer-events: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    max-width: 400px;
}

.advanced-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.advanced-notification.hiding {
    opacity: 0;
    transform: translateX(400px);
}

/* Notification Content */
.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    position: relative;
}

/* Notification Icon */
.notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.advanced-notification.success .notification-icon {
    background: #10b981;
    color: white;
}

.advanced-notification.error .notification-icon {
    background: #ef4444;
    color: white;
}

.advanced-notification.warning .notification-icon {
    background: #f59e0b;
    color: white;
}

.advanced-notification.info .notification-icon {
    background: #3b82f6;
    color: white;
}

/* Notification Text */
.notification-text {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.875rem;
    color: #555555;
    line-height: 1.5;
}

/* Close Button */
.notification-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* Progress Bar */
.notification-progress {
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.notification-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: currentColor;
    transform-origin: left;
    animation: progress-shrink var(--duration, 5000ms) linear forwards;
}

.advanced-notification.success .notification-progress::after {
    color: #10b981;
}

.advanced-notification.error .notification-progress::after {
    color: #ef4444;
}

.advanced-notification.warning .notification-progress::after {
    color: #f59e0b;
}

.advanced-notification.info .notification-progress::after {
    color: #3b82f6;
}

@keyframes progress-shrink {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-container {
        max-width: calc(100vw - 2rem);
        left: 1rem !important;
        right: 1rem !important;
    }

    .advanced-notification {
        min-width: auto;
        max-width: 100%;
    }
}
