/* ========================================
   MARKETING PAGE - ENHANCED SECTIONS CSS
   Created for enhanced visual and interactive design
   ======================================== */

/* ==========================================
   0. HERO SECTION - ULTRA MODERN
   ========================================== */

.hero-ultra-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    padding: 100px 0 60px;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-orb-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
}

.hero-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
}

.hero-orb-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
}

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

.hero-headline {
    margin-bottom: 40px;
}

.hero-main-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-impact-statement {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-message-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.hero-message-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(93, 62, 191, 0.15);
}

.message-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-icon i {
    font-size: 32px;
    color: #fff;
}

.message-content {
    flex: 1;
    text-align: right;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.text-highlight {
    color: var(--primary-color);
}

.message-tagline {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.stat-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(93, 62, 191, 0.15);
    border-color: var(--primary-color);
}

.stat-box.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-box.featured .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box.featured .stat-number {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.stat-box.featured .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-marketing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(93, 62, 191, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(93, 62, 191, 0.4);
}

.btn-hero-secondary {
    background: #fff;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666;
    font-weight: 600;
}

.trust-item i {
    color: #4caf50;
    font-size: 18px;
}

.scroll-indicator-marketing {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    animation: bounce 2s infinite;
}

.scroll-indicator-marketing i {
    font-size: 20px;
}

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

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-marketing-enhanced {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .hero-impact-statement {
        font-size: 20px;
    }

    .hero-message-box {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-cta-marketing {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   0.5 WHY OTEF SECTION - ENHANCED
   ========================================== */

.why-otef-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-otef-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-orb-1 {
    top: -15%;
    left: -8%;
    width: 450px;
    height: 450px;
}

.why-orb-2 {
    bottom: -15%;
    right: -8%;
    width: 400px;
    height: 400px;
}

.star-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
}

.why-features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.why-feature-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 62, 191, 0.15);
    border-color: var(--primary-color);
}

.why-feature-card.primary-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.feature-badge {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-feature-card:not(.primary-card) .feature-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.feature-badge.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8fab 100%);
}

.feature-badge.accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #33d9ff 100%);
}

.feature-badge.special {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.feature-badge i {
    font-size: 32px;
    color: #fff;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.primary-card .feature-content h3 {
    color: #fff;
}

.feature-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.stat-mini {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-align: center;
}

.stat-mini strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-mini span {
    font-size: 14px;
    opacity: 0.9;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.primary-card .feature-content p {
    color: rgba(255, 255, 255, 0.95);
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #666;
}

.feature-checklist i {
    color: #4caf50;
    font-size: 18px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-tag i {
    font-size: 16px;
}

.feature-highlight {
    margin-top: 15px;
    padding: 15px 20px;
    background: rgba(93, 62, 191, 0.1);
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
}

.why-cta-box {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.cta-box-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(93, 62, 191, 0.3);
}

.cta-box-content i {
    font-size: 48px;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

.cta-box-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Why OTEF Responsive */
@media (max-width: 768px) {
    .why-features-showcase {
        grid-template-columns: 1fr;
    }

    .why-feature-card.primary-card {
        grid-column: 1;
    }

    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }

    .cta-box-content {
        padding: 35px 25px;
    }

    .cta-box-content h3 {
        font-size: 22px;
    }
}

/* ==========================================
   1. ANNOUNCEMENT BANNER - ENHANCED
   ========================================== */

.announcement-banner-marketing {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(93, 62, 191, 0.3);
}

.announcement-banner-marketing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: bannerShine 3s infinite;
}

@keyframes bannerShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.banner-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bannerIconPulse 2s infinite;
}

.banner-icon-wrapper i {
    font-size: 20px;
    color: #fff;
}

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

.banner-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #fff;
}

.banner-highlight {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    animation: bannerHighlightPulse 2s infinite;
}

@keyframes bannerHighlightPulse {
    0%, 100% { background: rgba(255, 255, 255, 0.25); }
    50% { background: rgba(255, 255, 255, 0.35); }
}

.banner-divider {
    opacity: 0.6;
}

.banner-main {
    font-weight: 400;
}

.banner-cta {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.banner-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .announcement-banner-marketing {
        padding: 10px 15px;
    }

    .banner-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .banner-icon-wrapper {
        width: 35px;
        height: 35px;
    }

    .banner-icon-wrapper i {
        font-size: 16px;
    }

    .banner-text {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        font-size: 12px;
        justify-content: center;
    }

    .banner-highlight {
        font-size: 14px;
        padding: 5px 12px;
        font-weight: 600;
    }

    .banner-main {
        font-size: 13px;
        line-height: 1.4;
    }

    .banner-divider {
        display: none;
    }

    .banner-cta {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* ==========================================
   2. COMMON MISTAKES - ENHANCED INTERACTIVE
   ========================================== */

.common-mistakes-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.warning-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.mistakes-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.mistake-card-enhanced {
    position: relative;
    height: 320px;
    perspective: 1000px;
    cursor: pointer;
}

.mistake-card-front,
.mistake-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.mistake-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #f0f0f0;
}

.mistake-card-back {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mistake-card-enhanced:hover .mistake-card-front {
    transform: rotateY(180deg);
}

.mistake-card-enhanced:hover .mistake-card-back {
    transform: rotateY(360deg);
}

.mistake-number-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(93, 62, 191, 0.4);
}

.mistake-icon-lg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mistake-icon-lg i {
    font-size: 36px;
    color: #fff;
}

.mistake-title-enhanced {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.mistake-teaser {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.hover-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    animation: pulsePrompt 1.5s infinite;
}

@keyframes pulsePrompt {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hover-prompt i {
    animation: pointFinger 1s infinite;
}

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

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.solution-icon i {
    font-size: 28px;
    color: #fff;
}

.mistake-card-back h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.mistake-card-back p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.mistakes-cta-enhanced {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: glowRotate 10s linear infinite;
}

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

.cta-icon-float {
    font-size: 48px;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

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

.mistakes-cta-enhanced h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.mistakes-cta-enhanced p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

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

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

/* ==========================================
   3. OUR STORY - ENHANCED VISUAL
   ========================================== */

.our-story-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.story-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.story-orb-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
}

.story-orb-2 {
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
}

.heart-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.story-visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.story-visual-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.story-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 62, 191, 0.15);
    border-color: var(--primary-color);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon-wrapper i {
    font-size: 36px;
    color: #fff;
}

.pulse-animation {
    animation: iconPulse 2s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(93, 62, 191, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(93, 62, 191, 0);
    }
}

.story-visual-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.story-visual-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.story-quote-enhanced {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    opacity: 0.1;
}

.quote-text-enhanced {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.quote-flag {
    font-size: 32px;
    animation: flagWave 2s ease-in-out infinite;
}

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

/* ==========================================
   4. PRICING - ENHANCED MODERN
   ========================================== */

.pricing-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-background-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pricing-orb-1 {
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
}

.pricing-orb-2 {
    bottom: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
}

.price-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
}

.pricing-card-enhanced {
    max-width: 900px;
    margin: 60px auto;
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 80px rgba(93, 62, 191, 0.15);
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.pricing-card-enhanced:hover {
    border-color: var(--primary-color);
    box-shadow: 0 30px 100px rgba(93, 62, 191, 0.25);
}

.pricing-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 62, 191, 0.05) 0%, transparent 70%);
    animation: glowRotate 15s linear infinite;
    pointer-events: none;
}

.pricing-badge-top {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.pricing-badge-top i {
    font-size: 20px;
}

.pricing-price-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.amount {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 24px;
    color: #666;
}

.price-discount-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-original {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
}

.price-tagline {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.pricing-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.trust-badge-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.trust-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-group {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-group:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.feature-group-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-group-header span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-item i {
    color: #4caf50;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-bonus-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 25px 30px;
    border-radius: 20px;
    border: 2px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.bonus-icon {
    font-size: 36px;
    color: #ffc107;
}

.bonus-text {
    flex: 1;
}

.bonus-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bonus-text span {
    font-size: 15px;
    color: #666;
}

.pricing-cta-section {
    text-align: center;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.cta-subtext {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-subtext span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.cta-subtext i {
    color: #4caf50;
}

.pricing-note-enhanced {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-note-enhanced i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-note-enhanced p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.note-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.note-link:hover {
    gap: 10px;
}

/* Special Note Box for Additional Services */
.pricing-note-box-special {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    padding: 35px 40px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(93, 62, 191, 0.12);
}

.note-header-special {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.note-header-special i {
    font-size: 32px;
    color: var(--secondary-color);
    animation: starPulse 2s ease-in-out infinite;
}

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

.note-header-special h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.note-description {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-tag {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 62, 191, 0.08);
}

.service-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 62, 191, 0.2);
}

.service-tag i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.service-tag:hover i {
    transform: scale(1.1);
}

.note-cta-wrapper {
    text-align: center;
}

.btn-note-special {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(93, 62, 191, 0.3);
}

.btn-note-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(93, 62, 191, 0.4);
}

.btn-note-special i {
    font-size: 20px;
}

/* ==========================================
   5. FAQ - ENHANCED MODERN
   ========================================== */

.faq-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.faq-badge {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
}

.faq-modern-grid {
    display: grid;
    gap: 20px;
    margin-top: 60px;
}

.faq-item-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item-modern:hover {
    box-shadow: 0 10px 40px rgba(93, 62, 191, 0.12);
    border-color: var(--primary-color);
}

.faq-question-modern {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question-modern:hover {
    background: #f8f9fa;
}

.faq-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon-wrapper i {
    font-size: 24px;
    color: #fff;
}

.faq-question-modern h3 {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-toggle-icon {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item-modern.active .faq-toggle-icon {
    background: var(--primary-color);
}

.faq-item-modern.active .faq-toggle-icon i {
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 800px;
    padding: 0 30px 30px 30px;
}

.faq-answer-modern p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.answer-timeline,
.answer-checklist,
.answer-comparison,
.answer-requirements {
    margin: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.timeline-text {
    flex: 1;
    font-size: 15px;
    color: #666;
}

.price-highlight-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.price-big {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
}

.answer-badge-box {
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.answer-badge-box.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.answer-badge-box.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #bee5eb;
}

.answer-badge-box i {
    font-size: 22px;
}

.answer-note {
    font-style: italic;
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

.checklist-item,
.comparison-item,
.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #666;
}

.checklist-item i,
.comparison-item i,
.requirement-item i {
    color: #4caf50;
    font-size: 18px;
    flex-shrink: 0;
}

.comparison-item.highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-item.highlight i {
    color: #ff6b6b;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .mistakes-interactive-grid {
        grid-template-columns: 1fr;
    }

    .story-visual-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-enhanced {
        padding: 30px 20px;
    }

    .amount {
        font-size: 56px;
    }

    .pricing-features-modern {
        grid-template-columns: 1fr;
    }

    .pricing-trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-bonus-box {
        flex-direction: column;
        text-align: center;
    }

    .quote-text-enhanced {
        font-size: 20px;
    }

    .faq-question-modern {
        padding: 20px;
    }

    .faq-question-modern h3 {
        font-size: 17px;
    }

    .pricing-note-enhanced {
        flex-direction: column;
        padding: 20px;
    }

    /* Special Note Box Mobile */
    .pricing-note-box-special {
        padding: 25px 20px;
    }

    .note-header-special {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .note-header-special h4 {
        font-size: 20px;
    }

    .note-description {
        font-size: 15px;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-tag {
        padding: 12px 15px;
        font-size: 14px;
        justify-content: center;
    }

    .btn-note-special {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 15px;
    }
}
