/* ========================================
   HERO SECTION - MOBILE FIRST DESIGN
   ŞerifTech - Clean & Modern
   ======================================== */

/* === HERO MAIN === */
.hero-award {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    position: relative;
    padding: 5rem 0 2rem;
    overflow: hidden;
    background: #ffffff;
}

/* Subtle gradient overlay */
.hero-award::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* Hide decorative elements */
.hero-grid-bg,
.grid-lines,
.cursor-canvas,
.hero-award::after {
    display: none;
}

/* === FLOATING OBJECTS - Hidden === */
.floating-objects,
.float-obj,
.obj-1, .obj-2, .obj-3, .obj-4, .obj-5 {
    display: none;
}

/* === GLOWING ORBS - Hidden on mobile === */
.glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    display: none;
}

.orb-1,
.orb-2,
.orb-3 {
    display: none;
}

/* === MAIN CONTENT LAYOUT === */
.hero-main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
}

.hero-content-award {
    max-width: 600px;
    order: 2;
    width: 100%;
}

/* === HERO VIDEO/LOTTIE CONTAINER === */
.hero-video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    order: 1;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.hero-robot-video {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.hero-lottie,
dotlottie-player.hero-lottie,
lottie-player.hero-lottie {
    display: block !important;
    width: 100% !important;
    max-width: 250px !important;
    height: auto !important;
    min-height: 220px !important;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

/* === HERO TAG === */
.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tag-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5));
}

.tag-line:last-child {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.5), transparent);
}

.tag-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #10b981;
    text-transform: uppercase;
}

.tag-text::before,
.tag-text::after {
    display: none;
}

/* === HERO TITLE === */
.hero-title-award {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.title-wrapper {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.title-word {
    display: inline-block;
}

.title-accent-wrapper {
    margin-top: 0.15rem;
}

.title-accent {
    display: inline-block;
    position: relative;
    margin-right: 0.35rem;
}

.accent-text {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-underline {
    display: none;
}

/* === HERO DESCRIPTION === */
.hero-desc-award {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.desc-line {
    display: block;
    color: rgba(30, 30, 50, 0.6);
}

.desc-line.highlight {
    color: rgba(30, 30, 50, 0.8);
    margin-top: 0.35rem;
}

.desc-line em {
    color: #10b981;
    font-style: normal;
    font-weight: 600;
}

/* === HERO ACTIONS === */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-items: center;
    width: 100%;
    padding: 0;
}

.btn-award {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 260px;
}

.btn-primary-award {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-award:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary-award .btn-bg {
    display: none;
}

.btn-primary-award .btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.btn-primary-award:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-primary-award::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 ease;
}

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

.btn-secondary-award {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a2e;
}

.btn-secondary-award:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.btn-secondary-award .btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon-play {
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    transition: all 0.3s ease;
}

.btn-secondary-award:hover .btn-icon-play {
    background: #10b981;
    color: #ffffff;
}

/* === TRUST BADGES === */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(30, 30, 50, 0.5);
    font-size: 0.75rem;
}

.trust-icon {
    font-size: 0.9rem;
}

.trust-divider {
    display: none;
}

/* === STATS PANEL - Hidden on Mobile === */
.hero-stats-panel {
    display: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-width: 180px;
}

.glass-card::before,
.glass-card::after {
    display: none;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(30, 30, 50, 0.6);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item-award {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-item-award .stat-label {
    font-size: 0.7rem;
    color: rgba(30, 30, 50, 0.5);
    font-weight: 500;
}

.stat-bar {
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.2rem;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    border-radius: 2px;
    width: var(--fill);
}

/* === SCROLL HINT === */
.scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.4;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, #10b981, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 30px; }
    50% { opacity: 0.5; height: 18px; }
}

.scroll-hint span {
    font-size: 0.55rem;
    color: rgba(30, 30, 50, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */
@media (min-width: 768px) {
    .hero-award {
        padding: 6rem 0 3rem;
    }

    .hero-main-content {
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .hero-video-container {
        max-width: 350px;
    }

    .hero-lottie,
    dotlottie-player.hero-lottie,
    lottie-player.hero-lottie,
    .hero-robot-video {
        max-width: 350px !important;
        min-height: 300px !important;
    }

    .hero-title-award {
        font-size: 2.5rem;
    }

    .hero-desc-award {
        font-size: 1.05rem;
        padding: 0;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: center;
        padding: 0;
    }

    .btn-award {
        width: auto;
        max-width: none;
    }

    .trust-divider {
        display: block;
        width: 1px;
        height: 16px;
        background: rgba(0, 0, 0, 0.1);
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .hero-trust {
        gap: 1.25rem;
    }

    .scroll-hint {
        bottom: 1.5rem;
    }

    .scroll-line {
        height: 35px;
    }

    /* Show orbs on tablet+ */
    .glow-orbs {
        display: block;
    }

    .orb-1 {
        display: block;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
        top: -100px;
        left: -100px;
    }

    .orb-2 {
        display: block;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
        bottom: -100px;
        right: -100px;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    .hero-award {
        padding: 6rem 0 4rem;
    }

    .hero-main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        text-align: left;
        align-items: center;
        min-height: calc(100vh - 10rem);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .hero-content-award {
        order: 1;
        max-width: 580px;
    }

    .hero-video-container {
        order: 2;
        max-width: 480px;
        margin: 0;
        margin-left: auto;
    }

    .hero-lottie,
    dotlottie-player.hero-lottie,
    lottie-player.hero-lottie,
    .hero-robot-video {
        max-width: 480px !important;
        min-height: 400px !important;
    }

    .hero-tag {
        justify-content: flex-start;
    }

    .tag-line {
        width: 40px;
    }

    .tag-text {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .hero-title-award {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .title-wrapper {
        justify-content: flex-start;
    }

    .hero-desc-award {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .btn-award {
        padding: 0.9rem 1.75rem;
    }

    .hero-trust {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    /* Show stats panel on desktop */
    .hero-stats-panel {
        display: block;
        position: absolute;
        bottom: 3rem;
        left: 3rem;
        z-index: 20;
    }

    .scroll-hint {
        bottom: 2rem;
    }

    .scroll-line {
        height: 40px;
    }

    .scroll-hint span {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}

/* ========================================
   LARGE DESKTOP (1280px+)
   ======================================== */
@media (min-width: 1280px) {
    .hero-title-award {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }

    .hero-video-container {
        max-width: 520px;
    }

    .hero-lottie,
    dotlottie-player.hero-lottie,
    lottie-player.hero-lottie,
    .hero-robot-video {
        max-width: 520px !important;
        min-height: 450px !important;
    }

    .hero-desc-award {
        font-size: 1.15rem;
    }

    .orb-1 {
        width: 600px;
        height: 600px;
        top: -200px;
        left: -100px;
    }

    .orb-2 {
        width: 500px;
        height: 500px;
        bottom: -200px;
        right: -100px;
    }
}

/* ========================================
   EXTRA SMALL DEVICES (320px - 374px)
   ======================================== */
@media (max-width: 374px) {
    .hero-award {
        padding: 4.5rem 0 1.5rem;
    }

    .hero-main-content {
        padding: 0 0.75rem;
    }

    .hero-title-award {
        font-size: 1.4rem;
    }

    .hero-desc-award {
        font-size: 0.85rem;
    }

    .hero-video-container {
        max-width: 200px;
    }

    .hero-lottie,
    dotlottie-player.hero-lottie,
    lottie-player.hero-lottie,
    .hero-robot-video {
        max-width: 200px !important;
        min-height: 180px !important;
    }

    .btn-award {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .trust-item {
        font-size: 0.7rem;
    }

    .tag-text {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }

    .tag-line {
        width: 20px;
    }
}
