/*
Theme Name: Global Business Platform
Theme URI: https://globalbusinessplatform.az
Author: Sergey Fadayev
Description: Modern Dark Emerald UI for Global Business Platform.
Version: 1.2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Фоновая палитра */
    --bg-base: #040706;
    --bg-surface: #0a1310;
    --bg-surface-glass: rgba(10, 19, 16, 0.75);
    --bg-card: rgba(14, 25, 21, 0.6);

    /* Неоново-изумрудная палитра */
    --emerald-primary: #00f59b;
    --emerald-bright: #22c55e;
    --emerald-glow: rgba(0, 245, 155, 0.35);
    
    /* Текст */
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #4b5563;

    /* Рамки и скругления */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-emerald: rgba(0, 245, 155, 0.2);
    --border-emerald-hover: rgba(0, 245, 155, 0.5);
    --radius-pill: 9999px;
    --radius-card: 16px;

    /* Шрифты и переходы */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
}

/* Глобальный градиентный фон */
body {
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 245, 155, 0.18) 0%, rgba(4, 7, 6, 0) 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 245, 155, 0.08) 0%, rgba(4, 7, 6, 0) 40%),
        radial-gradient(circle at 15% 70%, rgba(0, 245, 155, 0.09) 0%, rgba(4, 7, 6, 0) 45%),
        radial-gradient(circle at 50% 100%, rgba(0, 245, 155, 0.12) 0%, rgba(4, 7, 6, 0) 50%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: var(--text-secondary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Контейнеры */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
    position: relative;
}

/* Типографика */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

p.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
}

/* Кнопки и плашки */
.btn-emerald {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background: var(--emerald-primary);
    color: #04100b;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 25px var(--emerald-glow);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 245, 155, 0.6);
    color: #000;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--emerald-primary);
    transform: translateX(4px);
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    background: #ffffff;
    color: #060908;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.btn-white-pill:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

/* Плашка-бейдж */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-primary);
}

/* 1. Hero с центральным лучом */
.hero-slider-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 245, 155, 0.25) 0%, rgba(0, 245, 155, 0.05) 50%, rgba(4, 7, 6, 0) 80%);
}

.hero-slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 6s ease-out;
    transform: scale(1.05);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 25%, rgba(4, 7, 6, 0.45) 0%, rgba(4, 7, 6, 0.95) 85%);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding-top: 6rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Bento Grid & Карточки */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gbp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Мягкий изумрудный градиент внутри карточек */
.gbp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 155, 0.3), transparent);
}

.gbp-card:hover {
    border-color: var(--border-emerald-hover);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 245, 155, 0.15);
    transform: translateY(-4px);
    background: rgba(18, 32, 27, 0.7);
}

.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 3; }

.bento-badge {
    align-self: flex-start;
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-primary);
    background: rgba(0, 245, 155, 0.08);
    border: 1px solid var(--border-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

/* Jury Grid */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.jury-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jury-photo-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 2px solid var(--border-emerald);
    box-shadow: 0 0 25px rgba(0, 245, 155, 0.25);
}

.jury-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jury-role {
    font-size: 0.85rem;
    color: var(--emerald-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.jury-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Business Grid */
.business-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.bullet-item {
    display: flex;
    gap: 1rem;
}

.bullet-icon {
    color: var(--emerald-primary);
    font-size: 1.2rem;
    line-height: 1.2;
}

.bullet-item h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.bullet-item p {
    font-size: 0.9rem;
    margin: 0;
}

.tv-teaser-card {
    border-left: 3px solid var(--emerald-primary);
    background: linear-gradient(145deg, rgba(16, 28, 23, 0.8) 0%, rgba(6, 12, 10, 0.9) 100%);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-emerald);
}

.testimonial-author h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Media & Partners */
.media-badges-grid, .media-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.media-chip {
    padding: 0.75rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.media-chip:hover {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 15px rgba(0, 245, 155, 0.15);
    transform: translateY(-2px);
}

.partners-title {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.partner-item img {
    max-height: 45px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.partner-text-logo {
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Форма */
.contact-box {
    max-width: 760px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 15px rgba(0, 245, 155, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

/* Медиа-запросы */
@media (max-width: 992px) {
    .business-grid-layout { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .form-row { grid-template-columns: 1fr; }
}












































/* ==========================================================================
   FLOATING ISLAND LUXURY HEADER
   ========================================================================== */

/* Сброс подчеркиваний для всех ссылок хедера */
.site-header a, 
.mobile-drawer a {
    text-decoration: none !important;
}

/* Обёртка, центрирующая парящий хедер */
.header-wrapper {
    position: fixed;
    top: 1.25rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
    pointer-events: none; /* Кликабельна только сама капсула */
}

/* Сама плавающая капсула */
.site-header {
    pointer-events: auto;
    width: 100%;
    max-width: 1140px;
    background: rgba(8, 15, 12, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 155, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 245, 155, 0.05);
    border-radius: 100px;
    padding: 0.5rem 0.75rem 0.5rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header:hover {
    border-color: rgba(0, 245, 155, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 245, 155, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Логотип */
.header-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.03);
}

/* Навигация */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    display: block;
    color: #9ca3af !important;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Правый блок и Кнопка */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: linear-gradient(135deg, #00f59b 0%, #00d685 100%);
    color: #030806 !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(0, 245, 155, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-luxury-cta svg {
    transition: transform 0.2s ease;
}

.btn-luxury-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 245, 155, 0.6);
    color: #000 !important;
}

.btn-luxury-cta:hover svg {
    transform: translate(2px, -2px);
}

/* Бургер-кнопка */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.burger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.burger-btn:hover {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 15px rgba(0, 245, 155, 0.2);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 360px;
    height: 100%;
    background: #080f0c;
    border-left: 1px solid rgba(0, 245, 155, 0.2);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
    z-index: 1999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-inner {
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-primary);
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.drawer-close-btn:hover {
    color: #fff;
}

.mobile-nav-list {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-list li a {
    color: #e5e7eb !important;
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    transition: all 0.2s ease;
}

.mobile-nav-list li a:hover {
    color: var(--emerald-primary) !important;
    padding-left: 6px;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .btn-luxury-cta {
        display: none;
    }
    .header-wrapper {
        top: 0.75rem;
    }
    .site-header {
        border-radius: 100px;
        padding: 0.5rem 0.75rem 0.5rem 1.25rem;
    }
}