/* ========================================
   MARKETING ULTRA - VISUAL & POWERFUL
   Ultra modern design for Hero & Why OTEF
   ======================================== */

/* ==========================================
   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, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 100px 0 60px;
}

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

/* Animated Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    bottom: -10%;
    left: -5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-orb-mega-1,
.hero-orb-mega-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-mega-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: orbPulse 8s ease-in-out infinite;
}

.hero-orb-mega-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: orbPulse 8s ease-in-out infinite 4s;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Content */
.hero-ultra-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Headline */
.hero-mega-headline {
    margin-bottom: 60px;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(241, 91, 181, 0.3); }
    50% { box-shadow: 0 0 40px rgba(241, 91, 181, 0.6); }
}

.headline-badge i {
    font-size: 18px;
    color: var(--secondary-color);
}

.mega-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.gradient-mega-text {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-mega-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 3px;
}

.mega-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Power Stats */
.hero-power-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.power-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    min-width: 150px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.power-stat:hover::before {
    left: 100%;
}

.power-stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(241, 91, 181, 0.3);
}

.power-stat-1 {
    border-color: var(--secondary-color);
}

.power-stat-2 {
    border-color: var(--primary-color);
}

.power-stat-3 {
    border-color: var(--accent-color);
}

.power-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.power-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mega CTA */
.hero-mega-cta {
    text-align: center;
}

.btn-mega-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(241, 91, 181, 0.4);
    transition: all 0.4s ease;
}

.btn-mega-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-mega-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-mega-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(241, 91, 181, 0.6);
}

.btn-icon {
    font-size: 24px;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-mega-primary:hover .btn-arrow {
    transform: translateX(-5px);
}

.cta-trust-line {
    margin-top: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-trust-line i {
    color: var(--accent-color);
    font-size: 18px;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 28px; opacity: 0.3; }
}

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

    .mega-title {
        font-size: 42px;
    }

    .mega-subtitle {
        font-size: 18px;
    }

    .hero-power-stats {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: center;
    }

    .power-stat {
        min-width: 100px;
        padding: 15px 10px;
        flex-shrink: 0;
    }

    .power-label {
        font-size: 11px;
        white-space: nowrap;
    }

    .btn-mega-primary {
        padding: 18px 35px;
        font-size: 18px;
        width: 100%;
        justify-content: center;
    }

    .hero-scroll-hint {
        display: none;
    }
}

/* ==========================================
   WHY OTEF - ULTRA VISUAL
   ========================================== */

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

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

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(93, 62, 191, 0.05) 0%,
        rgba(241, 91, 181, 0.05) 25%,
        rgba(0, 187, 249, 0.05) 50%,
        rgba(241, 91, 181, 0.05) 75%,
        rgba(93, 62, 191, 0.05) 100%
    );
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatAround 20s ease-in-out infinite;
}

.shape-circle {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 10%;
}

.shape-square {
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    transform: rotate(45deg);
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--accent-color);
    top: 60%;
    right: 20%;
    animation-delay: 14s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -50px) rotate(90deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
    75% { transform: translate(40px, 50px) rotate(270deg); }
}

/* Mega Header */
.why-mega-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.why-mega-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
}

/* Visual Grid */
.why-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.why-visual-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 3px solid transparent;
}

.why-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(93, 62, 191, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-visual-card:hover::before {
    opacity: 1;
}

.why-visual-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(93, 62, 191, 0.2);
}

.card-experience {
    border-color: var(--primary-color);
}

.card-transparency {
    border-color: var(--secondary-color);
}

.card-data {
    border-color: var(--accent-color);
}

.card-local {
    border-color: #ff6b6b;
}

.card-bg-pattern {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotatePattern 20s linear infinite;
}

@keyframes rotatePattern {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.card-icon-mega {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    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;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(93, 62, 191, 0.3);
    transition: all 0.3s ease;
}

.card-transparency .card-icon-mega {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8fab 100%);
}

.card-data .card-icon-mega {
    background: linear-gradient(135deg, var(--accent-color) 0%, #33d9ff 100%);
}

.card-local .card-icon-mega {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

.why-visual-card:hover .card-icon-mega {
    transform: scale(1.1) rotate(5deg);
}

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

.why-visual-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mini-stat {
    flex: 1;
    background: linear-gradient(135deg, rgba(93, 62, 191, 0.1) 0%, rgba(241, 91, 181, 0.1) 100%);
    padding: 15px 10px;
    border-radius: 12px;
}

.mini-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mini-stat span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-pill {
    background: rgba(93, 62, 191, 0.1);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-tag-special {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #33d9ff 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-tagline {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-badge-bottom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Mega CTA */
.why-mega-cta {
    position: relative;
    z-index: 1;
}

.mega-cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    border-radius: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(93, 62, 191, 0.3);
}

.mega-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotatePattern 15s linear infinite;
}

.cta-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.mega-cta-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.btn-ultra-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.btn-ultra-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.btn-ultra-cta:hover i {
    transform: translateX(-5px);
}

/* Why OTEF Responsive */
@media (max-width: 1200px) {
    .why-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-mega-title {
        font-size: 36px;
    }

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

    .mega-cta-content {
        padding: 40px 25px;
    }

    .mega-cta-content h3 {
        font-size: 24px;
    }

    .btn-ultra-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 35px;
        font-size: 18px;
    }
}
