/* Revolutionary Homepage Design - Completely Different Approach */

/* Global Dark Mode Text Fixes */
[data-theme-style="dark"] h1,
[data-theme-style="dark"] h2,
[data-theme-style="dark"] h3,
[data-theme-style="dark"] h4,
[data-theme-style="dark"] h5,
[data-theme-style="dark"] h6,
[data-theme-style="dark"] .title-line,
[data-theme-style="dark"] strong,
[data-theme-style="dark"] b,
[data-theme-style="dark"] .h1,
[data-theme-style="dark"] .h2,
[data-theme-style="dark"] .h3,
[data-theme-style="dark"] .h4,
[data-theme-style="dark"] .h5,
[data-theme-style="dark"] .h6 {
    color: var(--white) !important;
}

[data-theme-style="dark"] p,
[data-theme-style="dark"] span,
[data-theme-style="dark"] li,
[data-theme-style="dark"] .text-muted,
[data-theme-style="dark"] .description,
[data-theme-style="dark"] label,
[data-theme-style="dark"] .text-black,
[data-theme-style="dark"] small {
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] a {
    color: var(--primary) !important;
}

[data-theme-style="dark"] .card,
[data-theme-style="dark"] .btn-outline-primary,
[data-theme-style="dark"] .btn-outline-secondary,
[data-theme-style="dark"] .btn-light {
    background: var(--gray-800) !important;
    border-color: var(--gray-700) !important;
    color: var(--white) !important;
}

[data-theme-style="dark"] .card-text,
[data-theme-style="dark"] .card-title,
[data-theme-style="dark"] .card-body {
    color: var(--white) !important;
}

[data-theme-style="dark"] .btn-group .btn {
    background: var(--gray-800) !important;
    border-color: var(--gray-600) !important;
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] .btn-group .btn.active {
    background: var(--primary) !important;
    color: white !important;
}

[data-theme-style="dark"] .dropdown-menu {
    background: var(--gray-800) !important;
    border-color: var(--gray-600) !important;
}

[data-theme-style="dark"] .dropdown-item {
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] .dropdown-item:hover {
    background: var(--gray-700) !important;
    color: var(--white) !important;
}

[data-theme-style="dark"] .badge {
    background: var(--gray-700) !important;
    color: var(--white) !important;
}

/* Revolutionary Hero Section */
.revolution-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

[data-theme-style="dark"] .revolution-hero {
    background: var(--gray-900);
}

.revolution-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.revolution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .revolution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .revolution-left {
        order: 2;
    }
    
    .revolution-right {
        order: 1;
    }
}

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

.revolution-tagline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--primary-50);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--primary-100);
}

[data-theme-style="dark"] .revolution-tagline {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.tagline-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tagline-decoration {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.revolution-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
    letter-spacing: -0.04em;
}

[data-theme-style="dark"] .revolution-title {
    color: var(--white);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line-1 {
    animation-delay: 0.2s;
}

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

.revolution-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
}

[data-theme-style="dark"] .revolution-description {
    color: var(--gray-400);
}

.dynamic-color {
    color: var(--primary);
    position: relative;
}

.revolution-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .revolution-stats {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

@media (max-width: 768px) {
    .revolution-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme-style="dark"] .stat-label {
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

[data-theme-style="dark"] .stat-divider {
    background: var(--gray-700);
}

.revolution-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .revolution-actions {
        justify-content: center;
    }
}

.revolution-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.revolution-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.revolution-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.revolution-btn-primary:hover::before {
    left: 100%;
}

.revolution-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.revolution-btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

[data-theme-style="dark"] .revolution-btn-secondary {
    color: var(--gray-300);
    border-color: var(--gray-600);
}

.revolution-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

[data-theme-style="dark"] .revolution-btn-secondary:hover {
    background: var(--gray-800);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.revolution-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Revolutionary Visual */
.revolution-right {
    position: relative;
}

.revolution-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-300);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-200);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.visual-content:hover .hero-image {
    transform: scale(1.02);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
    animation: floatElement 6s ease-in-out infinite;
}

[data-theme-style="dark"] .float-element {
    background: var(--gray-800);
    color: var(--gray-200);
}

.float-element i {
    color: var(--primary);
    font-size: 1.25rem;
}

.element-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 4s;
}

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

/* Showcase Section */
.showcase-section {
    padding: 8rem 0;
    background: var(--gray-50);
    position: relative;
}

[data-theme-style="dark"] .showcase-section {
    background: var(--gray-900);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

[data-theme-style="dark"] .showcase-title {
    color: var(--white);
}

.title-prefix {
    color: var(--gray-400);
    font-weight: 400;
}

.title-main {
    color: var(--primary);
    display: block;
}

.showcase-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

[data-theme-style="dark"] .showcase-subtitle {
    color: var(--gray-400);
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.showcase-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

[data-theme-style="dark"] .step-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

[data-theme-style="dark"] .step-content h3 {
    color: var(--white);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

[data-theme-style="dark"] .step-content p {
    color: var(--gray-400);
}

.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 2rem;
        height: 2px;
        background: var(--gray-200);
    }
    
    .step-card:last-child .step-connector {
        display: none;
    }
}

.showcase-demo {
    max-width: 900px;
    margin: 0 auto;
}

.demo-wrapper {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

[data-theme-style="dark"] .demo-wrapper {
    background: var(--gray-800);
}

.demo-screen {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .demo-screen {
    border-color: var(--gray-700);
}

.screen-header {
    background: var(--gray-100);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

[data-theme-style="dark"] .screen-header {
    background: var(--gray-700);
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.screen-dots span:nth-child(1) {
    background: #ff5f56;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #27c93f;
}

.screen-title {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
}

[data-theme-style="dark"] .screen-title {
    color: var(--gray-400);
}

.screen-body {
    padding: 2rem;
    background: var(--white);
}

[data-theme-style="dark"] .screen-body {
    background: var(--gray-900);
}

.screen-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Feature Grid Section */
.feature-grid-section {
    padding: 8rem 0;
    background: var(--gray-50);
}

[data-theme-style="dark"] .feature-grid-section {
    background: var(--gray-900);
}

.feature-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

[data-theme-style="dark"] .grid-title {
    color: var(--white);
}

.grid-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

[data-theme-style="dark"] .grid-subtitle {
    color: var(--gray-400);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.feature-card {
    background: var(--gray-50);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

[data-theme-style="dark"] .feature-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-large {
    grid-column: span 8;
    grid-row: span 2;
}

.card-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.card-wide {
    grid-column: span 12;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .card-large,
    .card-tall,
    .card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

[data-theme-style="dark"] .feature-card h3 {
    color: var(--white);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

[data-theme-style="dark"] .feature-card p {
    color: var(--gray-400);
}

.card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.card-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Testimonials Revolution */
.testimonials-revolution {
    padding: 8rem 0;
    background: var(--gray-50);
}

[data-theme-style="dark"] .testimonials-revolution {
    background: var(--gray-900);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--black);
    position: relative;
    display: inline-block;
}

[data-theme-style="dark"] .testimonials-title {
    color: var(--white);
}

.title-accent {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-rev-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

[data-theme-style="dark"] .testimonial-rev-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.testimonial-rev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-200);
    margin-bottom: 1rem;
}

[data-theme-style="dark"] .testimonial-quote i {
    color: var(--gray-700);
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
}

[data-theme-style="dark"] .testimonial-quote p {
    color: var(--gray-300);
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-100);
}

[data-theme-style="dark"] .author-image {
    border-color: var(--gray-700);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--black);
    font-size: 1.125rem;
}

[data-theme-style="dark"] .author-info strong {
    color: var(--white);
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

[data-theme-style="dark"] .author-info span {
    color: var(--gray-400);
}

/* Pricing Revolution */
.pricing-revolution {
    padding: 8rem 0;
    background: var(--gray-50);
}

[data-theme-style="dark"] .pricing-revolution {
    background: var(--gray-900);
}

/* Additional pricing section dark mode fixes */
[data-theme-style="dark"] .pricing-revolution .mb-3,
[data-theme-style="dark"] .pricing-revolution .mb-5,
[data-theme-style="dark"] .pricing-revolution .text-center {
    color: var(--white) !important;
}

[data-theme-style="dark"] .pricing-revolution .small {
    color: var(--gray-400) !important;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--black);
}

[data-theme-style="dark"] .pricing-title {
    color: var(--white);
}

/* Ensure pricing section text is readable in dark mode */
[data-theme-style="dark"] #plans h2,
[data-theme-style="dark"] #plans h3,
[data-theme-style="dark"] #plans h4,
[data-theme-style="dark"] #plans .card-title,
[data-theme-style="dark"] #plans .font-weight-bold,
[data-theme-style="dark"] #plans strong,
[data-theme-style="dark"] #plans .text-black,
[data-theme-style="dark"] #plans .h1,
[data-theme-style="dark"] #plans .h2,
[data-theme-style="dark"] #plans .h3,
[data-theme-style="dark"] #plans .h4,
[data-theme-style="dark"] #plans .h5,
[data-theme-style="dark"] #plans .h6 {
    color: var(--white) !important;
}

[data-theme-style="dark"] #plans p,
[data-theme-style="dark"] #plans .text-muted,
[data-theme-style="dark"] #plans .card-text,
[data-theme-style="dark"] #plans small,
[data-theme-style="dark"] #plans span,
[data-theme-style="dark"] #plans label {
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] #plans .card,
[data-theme-style="dark"] #plans .btn-outline-primary,
[data-theme-style="dark"] #plans .btn-light {
    border-color: var(--gray-600) !important;
    background: var(--gray-800) !important;
    color: var(--white) !important;
}

[data-theme-style="dark"] #plans .btn-outline-primary:hover,
[data-theme-style="dark"] #plans .btn-light:hover {
    background: var(--gray-700) !important;
}

[data-theme-style="dark"] #plans .btn-group .btn {
    background: var(--gray-800) !important;
    border-color: var(--gray-600) !important;
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] #plans .btn-group .btn.active {
    background: var(--primary) !important;
    color: white !important;
}

[data-theme-style="dark"] #plans .dropdown-menu {
    background: var(--gray-800) !important;
    border-color: var(--gray-600) !important;
}

[data-theme-style="dark"] #plans .dropdown-item {
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] #plans .dropdown-item:hover {
    background: var(--gray-700) !important;
    color: var(--white) !important;
}

[data-theme-style="dark"] #plans .badge {
    background: var(--gray-700) !important;
    color: var(--white) !important;
}

/* FAQ Revolution */
.faq-revolution {
    padding: 8rem 0;
    background: var(--gray-50);
}

[data-theme-style="dark"] .faq-revolution {
    background: var(--gray-900);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

[data-theme-style="dark"] .faq-title {
    color: var(--white);
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

[data-theme-style="dark"] .faq-subtitle {
    color: var(--gray-400);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-rev-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

[data-theme-style="dark"] .faq-rev-item {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.faq-rev-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

[data-theme-style="dark"] .faq-rev-question {
    color: var(--white);
}

.faq-rev-question:hover {
    background: var(--gray-50);
}

[data-theme-style="dark"] .faq-rev-question:hover {
    background: var(--gray-700);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-rev-item.active .faq-icon .fa-plus {
    display: none;
}

.faq-rev-item.active .faq-icon .fa-minus {
    display: block;
}

.faq-rev-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme-style="dark"] .faq-rev-answer {
    color: var(--gray-400);
}

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

/* CTA Revolution */
.cta-revolution {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-visual {
    position: relative;
    height: 300px;
}

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

.cta-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCTA {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Blog Revolution */
.blog-revolution {
    padding: 8rem 0;
    background: var(--gray-50);
}

[data-theme-style="dark"] .blog-revolution {
    background: var(--gray-900);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--black);
}

[data-theme-style="dark"] .blog-title {
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-rev-card {
    background: var(--gray-50);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

[data-theme-style="dark"] .blog-rev-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

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

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-rev-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-rev-card:hover .blog-rev-image {
    transform: scale(1.05);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-rev-title {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

[data-theme-style="dark"] .blog-rev-title {
    color: var(--white);
}

.blog-rev-title:hover {
    color: var(--primary);
}

.blog-rev-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-rev-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

[data-theme-style="dark"] .blog-rev-excerpt {
    color: var(--gray-400);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .revolution-hero,
    .showcase-section,
    .feature-grid-section,
    .testimonials-revolution,
    .pricing-revolution,
    .faq-revolution,
    .cta-revolution,
    .blog-revolution {
        padding: 4rem 0;
    }
    
    .revolution-container,
    .showcase-container,
    .feature-grid-container,
    .testimonials-container,
    .pricing-container,
    .faq-container,
    .blog-container {
        padding: 0 1rem;
    }
    
    .revolution-visual,
    .cta-visual {
        height: 400px;
    }
    
    .floating-elements,
    .cta-shape {
        display: none;
    }
}

/* Additional comprehensive dark mode fixes */
[data-theme-style="dark"] .row,
[data-theme-style="dark"] .col-12,
[data-theme-style="dark"] .col-lg-6,
[data-theme-style="dark"] .col-xl-4 {
    color: var(--gray-300) !important;
}

[data-theme-style="dark"] .row h1,
[data-theme-style="dark"] .row h2,
[data-theme-style="dark"] .row h3,
[data-theme-style="dark"] .row h4,
[data-theme-style="dark"] .row h5,
[data-theme-style="dark"] .row h6,
[data-theme-style="dark"] .row strong,
[data-theme-style="dark"] .row .font-weight-bold {
    color: var(--white) !important;
}

[data-theme-style="dark"] .pricing-card {
    background: var(--gray-800) !important;
    border-color: var(--gray-700) !important;
}

[data-theme-style="dark"] .pricing-card .card-body,
[data-theme-style="dark"] .pricing-card .card-footer {
    background: transparent !important;
    color: var(--white) !important;
}

[data-theme-style="dark"] .pricing-card .h1,
[data-theme-style="dark"] .pricing-card h1 {
    color: var(--white) !important;
}

[data-theme-style="dark"] .pricing-tag {
    background: var(--primary) !important;
    color: white !important;
}