/* ==================== BOOTSTRAP CUSTOMIZATION - AI/SAAS THEME ==================== */
:root {
    --bs-primary: #6366f1;
    --bs-secondary: #64748b;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-soft: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --gradient-purple: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
    --gradient-blue: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    color: #0f172a;
    padding-top: 76px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ==================== MODERN AI/SAAS STYLES ==================== */
.modern-section {
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.modern-section .container {
    max-width: 1200px;
}

.modern-section .row {
    row-gap: 3rem !important;
}

.modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.modern-section-alt {
    background: #ffffff;
    padding: 5rem 0;
}

.modern-section-alt .container {
    max-width: 1200px;
}

.modern-section-alt .row {
    row-gap: 3rem !important;
}

.modern-gradient-bg {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    padding: 5rem 0;
}

.modern-gradient-bg .container {
    max-width: 1200px;
}

.modern-gradient-bg .row {
    row-gap: 3rem !important;
}

.modern-gradient-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.modern-content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.modern-content-card h2 {
    margin-bottom: 1.5rem;
}

.modern-content-card p {
    line-height: 1.8;
    margin-bottom: 0;
}

.modern-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 3.5rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.modern-badge-center {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.modern-image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 6s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* ==================== CUSTOM UTILITIES ==================== */
.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* ==================== NAVBAR ==================== */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.navbar.shadow {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-weight: 700;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    font-weight: 500;
    color: #475569 !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1 !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.6;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 30s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, rgba(96, 165, 250, 0) 70%);
    top: 50%;
    right: 15%;
    animation-delay: -20s;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3125rem;
    color: #64748b;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ==================== DOWNLOAD CARD ==================== */
.download-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.15);
}

.url-input {
    width: 100%;
    padding: 1.25rem 1.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.url-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: white;
}

.url-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.btn-download-main {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35), 0 0 20px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-download-main::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;
}

.btn-download-main:hover::before {
    left: 100%;
}

.btn-download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45), 0 0 30px rgba(99, 102, 241, 0.2);
}

.btn-download-main:active {
    transform: translateY(0);
}

.error-msg {
    color: #dc3545;
    margin-top: 1rem;
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 12px;
    border-left: 4px solid #dc3545;
    font-weight: 500;
    display: none;
}

.error-msg:not(:empty) {
    display: block;
}

/* ==================== PREVIEW SECTION ==================== */
.preview-section {
    display: none;
    margin-top: 2rem;
    animation: fadeInUp 0.5s ease;
}

.preview-section.active {
    display: block;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.slide-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.slide-card:hover {
    border-color: #c4b5fd;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slide-card.selected {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.slide-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.slide-checkbox {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 10;
    accent-color: #6366f1;
}

.format-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-format {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-format::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-format span,
.btn-format i {
    position: relative;
    z-index: 1;
}

.btn-format:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-format:hover::before,
.btn-format.active::before {
    opacity: 1;
}

.btn-format.active {
    border-color: #6366f1;
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-final-download {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-final-download:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.navigation-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-go-back,
.btn-download-another {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border: 2px solid #6366f1;
    background: white;
    color: #6366f1;
    border-radius: 0.75rem;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-go-back:hover,
.btn-download-another:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== STATS ==================== */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.375rem;
    line-height: 1;
}

.stat-value i {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 45px;
    background: linear-gradient(180deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

/* ==================== SECTIONS ==================== */
.intro-section,
.intro-section-alt,
.howto-section,
.features-section,
.review-section,
.faq-section,
.benefits-banner,
.conclusion-section {
    padding: 5rem 0;
}

.features-section .container,
.faq-section .container,
.benefits-banner .container {
    max-width: 1200px;
}

.features-section .row,
.faq-section .row,
.benefits-banner .row {
    row-gap: 2rem !important;
}

.review-section .container,
.conclusion-section .container {
    max-width: 950px;
}

.intro-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    padding: 5rem 0;
}

.intro-section .container {
    max-width: 1200px;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e9d5ff 50%, transparent 100%);
}

.intro-section .row {
    row-gap: 3rem !important;
}

.intro-section-alt {
    background: #ffffff;
    position: relative;
    padding: 5rem 0;
}

.intro-section-alt .container {
    max-width: 1200px;
}

.intro-section-alt .row {
    row-gap: 3rem !important;
}

.intro-section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
}

/* ==================== INTRO SECTION ==================== */
.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.intro-image-container {
    position: relative;
    perspective: 1000px;
}

.intro-main-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.intro-main-image:hover {
    transform: scale(1.02);
}

.intro-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 1.125rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.intro-stat-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.stat-card-1 { top: 20px; right: -20px; }
.stat-card-2 { bottom: 80px; left: -20px; }
.stat-card-3 { bottom: 20px; right: 20px; }

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.stat-number {
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}

.intro-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f172a;
}

.intro-desc {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==================== HOW TO SECTION ==================== */
.howto-content {
    padding-right: 1.5rem;
}

.howto-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f172a;
}

.howto-content > p {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.howto-steps {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.howto-step {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.howto-step:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(248, 250, 252, 0.9);
}

.step-num {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-text h4 {
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: #0f172a;
    font-size: 1.125rem;
}

.step-text p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.howto-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.rounded-image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

.howto-floating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 1.125rem 1.75rem;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.howto-floating i {
    font-size: 1.25rem;
}

/* ==================== FEATURES SECTION ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .modern-badge-center {
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #0f172a;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3), 0 0 20px rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4), 0 0 30px rgba(99, 102, 241, 0.2);
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.feature-card p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
}

/* ==================== BENEFITS BANNER ==================== */
.benefits-banner {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.benefits-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(100px);
}

.benefits-content {
    position: relative;
    z-index: 1;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #10b981;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==================== REVIEW SECTION ==================== */
.review-section {
    padding: 5rem 0 !important;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(99, 102, 241, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-avatar {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-avatar i {
    font-size: 5.5rem;
    color: #6366f1;
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.3));
}

.review-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.review-content p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-signature {
    margin-top: 2rem;
    font-style: italic;
    color: #64748b;
    font-size: 1.0625rem;
}

.developer-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.developer-link:hover {
    border-bottom-color: #6366f1;
}

/* ==================== FAQ SECTION ==================== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.faq-card:hover .faq-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.faq-card h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.4;
}

.faq-card p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin: 0;
}

.faq-card strong {
    color: #6366f1;
    font-weight: 600;
}

/* ==================== CONCLUSION SECTION ==================== */
.conclusion-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 !important;
}

.conclusion-section .container {
    max-width: 900px;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(80px);
}

.conclusion-content {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.conclusion-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0f172a;
}

.conclusion-content h2 i {
    color: #6366f1;
    margin-right: 0.5rem;
}

.conclusion-content p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 2.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 1.1875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45);
    color: white;
}

.cta-button i {
    transition: transform 0.3s ease;
}

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

/* ==================== FOOTER ==================== */
.main-footer {
    background: linear-gradient(180deg, #1a1d23 0%, #0f1115 100%);
    color: white;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #6366f1;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.4));
}

.footer-text {
    color: #adb5bd;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #343a40;
}

/* ==================== LOADER ==================== */
.custom-loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-loader {
    width: 64px;
    height: 64px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-loader-text {
    color: white;
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .intro-wrapper {
        grid-template-columns: 1fr;
    }
    
    .intro-right {
        order: -1;
    }
    
    body {
        padding-top: 70px;
    }
    
    .intro-stat-card {
        padding: 0.875rem 1.25rem;
    }
    
    .stat-card-1,
    .stat-card-2,
    .stat-card-3 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .intro-title,
    .howto-content h2,
    .section-header h2,
    .review-content h2,
    .conclusion-content h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .download-card {
        padding: 1.75rem;
    }
    
    .feature-card,
    .faq-card {
        padding: 2rem;
    }
    
    .review-card {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .section-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .format-buttons {
        flex-direction: column;
    }
    
    .btn-format {
        width: 100%;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .feature-card,
    .faq-card {
        padding: 1.75rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .intro-title,
    .howto-content h2,
    .section-header h2,
    .review-content h2,
    .conclusion-content h2 {
        font-size: 1.75rem;
    }
    
    .benefit-item {
        padding: 1rem;
        font-size: 0.875rem;
    }
}
/* ==================== AI/SAAS REDESIGNED SECTIONS ==================== */

/* Why Need Section Redesign */
.why-need-redesign {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.why-need-redesign::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.why-need-redesign::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s ease-in-out infinite reverse;
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #a5b4fc;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}

/* AI Section Title */
.ai-section-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* AI Section Description */
.ai-section-desc {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    line-height: 1.8;
}

/* AI Persona Card */
.ai-persona-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ai-persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #6366f1 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-persona-card:hover::before {
    opacity: 1;
}

.ai-persona-card:hover {
    transform: translateY(-12px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3), 0 0 0 1px rgba(99, 102, 241, 0.2);
}

.ai-persona-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
    transition: all 0.4s ease;
}

.ai-persona-card:hover .ai-persona-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6);
}

.ai-persona-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ai-persona-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ai-persona-card p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.ai-glow-effect {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ai-persona-card:hover .ai-glow-effect {
    opacity: 1;
}

/* Features Section Redesign */
.features-redesign {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.features-redesign::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.features-redesign .ai-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #6366f1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.features-redesign .ai-section-title {
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-redesign .ai-section-desc {
    color: #475569;
}

/* AI Feature Card */
.ai-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ai-feature-card:hover::before {
    transform: scaleX(1);
}

.ai-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 32px 64px rgba(99, 102, 241, 0.15), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.ai-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ai-feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35), 0 0 20px rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-feature-card:hover .ai-feature-icon-wrapper {
    transform: rotate(-10deg) scale(1.15);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5), 0 0 30px rgba(99, 102, 241, 0.3);
}

.ai-feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.ai-feature-card:hover .ai-feature-number {
    opacity: 0.6;
}

.ai-feature-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-feature-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.ai-feature-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ai-feature-card:hover .ai-feature-glow {
    opacity: 1;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .ai-section-title {
        font-size: 2.5rem;
    }
    
    .ai-section-desc {
        font-size: 1.125rem;
    }
    
    .ai-persona-card,
    .ai-feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-section-desc {
        font-size: 1rem;
    }
    
    .ai-persona-icon,
    .ai-feature-icon-wrapper {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }
    
    .ai-persona-number,
    .ai-feature-number {
        font-size: 2rem;
    }
}
/* ==================== HERO SECTION REDESIGN ==================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Download Card Redesign */
.download-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.url-input {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #0f172a;
}

.url-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.url-input::placeholder {
    color: #94a3b8;
}

.btn-download-main {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-download-main:hover::before {
    left: 100%;
}

.btn-download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ==================== INTRODUCTION SECTION REDESIGN ==================== */
.intro-section-redesign {
    background: #ffffff;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.intro-section-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-badge-redesign {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #c7d2fe;
}

.intro-title-redesign {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text-redesign {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0;
}

.intro-image-wrapper-redesign {
    position: relative;
}

.intro-main-img-redesign {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.intro-main-img-redesign:hover {
    transform: scale(1.02);
}

.floating-stat-redesign {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.floating-stat-redesign-1 {
    top: 20px;
    right: -20px;
}

.floating-stat-redesign-2 {
    bottom: 60px;
    left: -20px;
}

.floating-stat-redesign-3 {
    bottom: 20px;
    right: 30px;
}

/* ==================== SECOND INTRO SECTION REDESIGN ==================== */
.intro-alt-redesign {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    padding: 6rem 0;
    position: relative;
}

.intro-alt-redesign::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ==================== BENEFITS SECTION REDESIGN ==================== */
.benefits-section-redesign {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

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

.benefit-card-redesign {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card-redesign:hover::before {
    transform: scaleX(1);
}

.benefit-card-redesign:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.benefit-icon-redesign {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.benefit-card-redesign:hover .benefit-icon-redesign {
    transform: rotate(-10deg) scale(1.1);
}

.benefit-card-redesign h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.benefit-card-redesign p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ==================== BENEFITS BANNER REDESIGN ==================== */
.benefits-banner-redesign {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-banner-redesign::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.benefits-banner-redesign h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
}

.benefits-list-redesign {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item-redesign {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item-redesign:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.benefit-item-redesign i {
    font-size: 1.5rem;
    color: #6366f1;
    flex-shrink: 0;
}

.benefit-item-redesign span {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== REVIEW SECTION REDESIGN ==================== */
.review-section-redesign {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}

.review-card-redesign {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.review-card-redesign::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 10rem;
    color: rgba(99, 102, 241, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-avatar-redesign {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.review-content-redesign {
    text-align: center;
    position: relative;
    z-index: 1;
}

.review-badge-redesign {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #6366f1;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #c7d2fe;
}

.review-content-redesign h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2rem;
}

.review-content-redesign p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.review-signature-redesign {
    margin-top: 2rem;
    font-style: italic;
    color: #64748b;
    font-size: 1.125rem;
}

.developer-link-redesign {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.developer-link-redesign:hover {
    border-bottom-color: #6366f1;
}

/* ==================== FAQ SECTION REDESIGN ==================== */
.faq-section-redesign {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section-redesign::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.faq-section-redesign .ai-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.faq-section-redesign .ai-section-title {
    color: #ffffff;
}

.faq-section-redesign .ai-section-desc {
    color: #cbd5e1;
}

.faq-card-redesign {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
}

.faq-card-redesign:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.faq-icon-redesign {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    transition: all 0.4s ease;
}

.faq-card-redesign:hover .faq-icon-redesign {
    transform: rotate(10deg) scale(1.1);
}

.faq-card-redesign h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-card-redesign p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.faq-card-redesign strong {
    color: #a5b4fc;
    font-weight: 600;
}

/* ==================== CONCLUSION SECTION REDESIGN ==================== */
.conclusion-section-redesign {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
}

.conclusion-content-redesign {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.conclusion-content-redesign h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.conclusion-content-redesign h2 i {
    display: inline-block;
    margin-right: 0.5rem;
}

.conclusion-content-redesign p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-button-redesign {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
    cursor: pointer;
}

.cta-button-redesign:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-title-redesign,
    .ai-section-title {
        font-size: 2.5rem;
    }
    
    .download-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .intro-title-redesign {
        font-size: 2rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .review-card-redesign,
    .conclusion-content-redesign {
        padding: 2.5rem 2rem;
    }
    
    .stat-divider {
        display: none;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}
/* ==================== INLINE STYLE REPLACEMENTS ==================== */
.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-icon-wrapper-1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.stat-icon-wrapper-2 {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.stat-icon-wrapper-3 {
    background: linear-gradient(135deg, #ec4899, #f97316);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.stat-label-text {
    font-size: 0.875rem;
    color: #64748b;
}

/* ==================== ENHANCED MOBILE RESPONSIVENESS ==================== */

/* Hero Section Mobile Optimization */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .download-card {
        padding: 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .url-input {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .btn-download-main {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-item {
        width: 100%;
        text-align: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .gradient-orb {
        width: 300px !important;
        height: 300px !important;
    }
}

/* Introduction Section Mobile */
@media (max-width: 992px) {
    .intro-section-redesign,
    .intro-alt-redesign {
        padding: 60px 0;
    }
    
    .intro-title-redesign {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-text-redesign {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .intro-image-wrapper-redesign {
        margin-top: 2rem;
    }
    
    .floating-stat-redesign {
        position: static !important;
        margin-top: 1rem;
        transform: none !important;
    }
    
    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .intro-badge-redesign {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .intro-title-redesign {
        font-size: 1.75rem;
    }
    
    .floating-stat-redesign {
        padding: 12px;
    }
}

/* Why Need Section Mobile */
@media (max-width: 992px) {
    .why-need-redesign {
        padding: 60px 0;
    }
    
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-section-desc {
        font-size: 1rem;
    }
    
    .ai-persona-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-persona-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ai-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .ai-section-title {
        font-size: 1.75rem;
    }
    
    .ai-persona-card {
        padding: 1.25rem;
    }
}

/* Features Section Mobile */
@media (max-width: 992px) {
    .features-redesign {
        padding: 60px 0;
    }
    
    .ai-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .ai-feature-card h4 {
        font-size: 1.25rem;
    }
    
    .ai-feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .ai-feature-number {
        font-size: 0.75rem;
    }
}

/* Benefits Section Mobile */
@media (max-width: 992px) {
    .benefits-section-redesign {
        padding: 60px 0;
    }
    
    .benefit-card-redesign {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon-redesign {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Banner Mobile */
@media (max-width: 992px) {
    .benefits-banner-redesign {
        padding: 40px 0;
    }
    
    .benefits-banner-redesign h3 {
        font-size: 1.75rem;
    }
    
    .benefits-list-redesign li {
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Review Section Mobile */
@media (max-width: 992px) {
    .review-section-redesign {
        padding: 60px 0;
    }
    
    .review-card-redesign {
        padding: 2rem;
    }
    
    .review-quote-mark {
        font-size: 4rem;
    }
    
    .review-text-redesign {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .review-card-redesign {
        padding: 1.5rem;
    }
    
    .review-quote-mark {
        font-size: 3rem;
    }
    
    .review-avatar-redesign {
        width: 50px;
        height: 50px;
    }
}

/* FAQ Section Mobile */
@media (max-width: 992px) {
    .faq-section-redesign {
        padding: 60px 0;
    }
    
    .faq-card-redesign {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-question-redesign {
        font-size: 1rem;
    }
    
    .faq-answer-redesign {
        font-size: 0.95rem;
    }
}

/* Conclusion Section Mobile */
@media (max-width: 992px) {
    .conclusion-section-redesign {
        padding: 60px 0;
    }
    
    .conclusion-content-redesign {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .conclusion-content-redesign {
        padding: 1.5rem;
    }
    
    .cta-button-redesign {
        width: 100%;
        padding: 14px 24px;
    }
}

/* General Mobile Improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    .btn {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Spacing adjustments */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .ai-feature-card,
    .benefit-card-redesign,
    .faq-card-redesign {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
    }
    
    /* Increase touch target sizes */
    .btn {
        min-height: 44px;
    }
    
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}