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

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-accent: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --accent-primary: #0ea5e9;
    --accent-secondary: #f59e0b;
    --accent-tertiary: #10b981;
    --accent-quaternary: #8b5cf6;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -30%;
    right: -20%;
    width: 1200px;
    height: 1200px;
    background: rgba(14, 165, 233, 0.15);
    filter: blur(90px);
    border-radius: 50%;
    pointer-events: none;
    animation: rotateSlow 60s linear infinite;
    opacity: 0.35;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(26,32,44,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Navigation */
.main-navbar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(250, 251, 252, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 16px;
    }
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 1001;
    position: relative;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.hamburger-btn span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
}

.hamburger-btn span:nth-child(1) {
    top: 8px;
}

.hamburger-btn span:nth-child(2) {
    top: 15px;
}

.hamburger-btn span:nth-child(3) {
    top: 22px;
}

.hamburger-btn.active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-banner {
    background: transparent;
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before,
.hero-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.hero-banner::before {
    top: 30%;
    right: 6%;
    width: 110px;
    height: 110px;
    border-color: var(--accent-secondary);
    opacity: 0.25;
    animation: floatCircle 7.5s ease-in-out infinite 0.8s;
}

.hero-banner::after {
    top: 60%;
    right: 3%;
    width: 100px;
    height: 100px;
    border-color: var(--accent-primary);
    opacity: 0.25;
    animation: floatCircle 8.5s ease-in-out infinite 2s;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    padding: 8px 20px;
    border: 1.5px solid rgba(79, 70, 229, 0.2);
    border-radius: 50px;
    background: rgba(79, 70, 229, 0.05);
    display: inline-block;
    margin-bottom: 8px;
}

.hero-text-content {
    max-width: 900px;
    position: relative;
    text-align: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--accent-primary);
    position: relative;
    padding-bottom: 32px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.hero-description {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0 auto 48px auto;
    max-width: 720px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px 0;
    width: 100%;
    max-width: 900px;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1;
    background: var(--accent-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

.hero-wrapper {
    position: relative;
}

.hero-wrapper::before,
.hero-wrapper::after,
.hero-text-content::before,
.hero-text-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    pointer-events: none;
    z-index: -1;
}

.hero-wrapper::before {
    top: 5%;
    left: 5%;
    width: 140px;
    height: 140px;
    border-color: var(--accent-primary);
    opacity: 0.25;
    animation: floatCircle 6s ease-in-out infinite;
}

.hero-wrapper::after {
    bottom: 20%;
    left: 8%;
    width: 90px;
    height: 90px;
    border-color: var(--accent-tertiary);
    opacity: 0.25;
    animation: floatCircle 8s ease-in-out infinite 1s;
}

.hero-text-content::before {
    top: 10%;
    left: 3%;
    width: 120px;
    height: 120px;
    border-color: var(--accent-primary);
    opacity: 0.25;
    animation: floatCircle 7s ease-in-out infinite 0.5s;
}

.hero-text-content::after {
    bottom: 15%;
    right: 5%;
    width: 80px;
    height: 80px;
    border-color: var(--accent-secondary);
    opacity: 0.25;
    animation: floatCircle 9s ease-in-out infinite 1.5s;
}

.hero-banner .container::before,
.hero-banner .container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.hero-banner .container::before {
    top: 45%;
    right: 8%;
    width: 95px;
    height: 95px;
    border-color: var(--accent-quaternary);
    animation: floatCircle 6.5s ease-in-out infinite 1.2s;
}

.hero-banner .container::after {
    bottom: 25%;
    right: 4%;
    width: 85px;
    height: 85px;
    border-color: var(--accent-tertiary);
    animation: floatCircle 7.8s ease-in-out infinite 0.3s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translate(15px, -20px) scale(1.05);
        opacity: 0.3;
    }
    66% {
        transform: translate(-10px, 15px) scale(0.95);
        opacity: 0.2;
    }
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.hero-cta-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.hero-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Floating Visual Elements */
.hero-visual-element {
    display: none;
}

.hero-visual-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    width: min(38vw, 360px);
    height: min(38vw, 360px);
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.7);
    -webkit-mask: radial-gradient(circle, transparent 60%, black 62%);
    mask: radial-gradient(circle, transparent 60%, black 62%);
    filter: saturate(120%);
    animation: rotateSlow 24s linear infinite, driftY 6s ease-in-out infinite;
    opacity: 0.9;
}

.hero-visual-element::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    width: min(38vw, 360px);
    height: min(38vw, 360px);
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.6);
    -webkit-mask: radial-gradient(circle, transparent 60%, black 62%);
    mask: radial-gradient(circle, transparent 60%, black 62%);
    filter: saturate(120%);
    animation: rotateSlow 20s linear infinite reverse, driftYAlt 7s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.9; }
}

@media (max-width: 1024px) {
    .hero-wrapper::before {
        width: 110px;
        height: 110px;
        left: -7%;
    }
    
    .hero-wrapper::after {
        width: 70px;
        height: 70px;
        left: -4%;
    }
    
    .hero-text-content::before {
        width: 100px;
        height: 100px;
        left: -5%;
    }
    
    .hero-text-content::after {
        width: 70px;
        height: 70px;
        right: -4%;
    }
}

@media (max-width: 768px) {
    .hero-banner::before,
    .hero-banner::after,
    .hero-banner .container::before,
    .hero-banner .container::after,
    .hero-wrapper::before,
    .hero-wrapper::after,
    .hero-text-content::before,
    .hero-text-content::after {
        display: none;
    }
}

.floating-card {
    display: none;
}

.floating-card.card-1 {
    width: 140px;
    height: 140px;
    top: 20%;
    left: 10%;
    background: rgba(14, 165, 233, 0.1);
    animation-delay: 0s;
}

.floating-card.card-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 15%;
    background: rgba(245, 158, 11, 0.1);
    animation-delay: 2s;
}

.floating-card.card-3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 30%;
    background: rgba(16, 185, 129, 0.1);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

/* Enable scattered floating square cards per section */
.hero-banner .container,
.intro-section .container,
.bonus-types-section .container,
.main-content .container,
.main-footer .container {
    position: relative;
    z-index: 1;
}

@keyframes driftFloatA {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes driftFloatB {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-2deg); }
}

/* HERO scattered squares (left/right sides) */
.hero-banner .container::before,
.hero-banner .container::after {
    content: none;
}

.hero-banner .container::before { content: none; }

.hero-banner .container::after { content: none; }

/* INTRO scattered squares */

/* BONUSES scattered squares */
.bonus-types-section .container::before,
.bonus-types-section .container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(14, 165, 233, 0.24);
    pointer-events: none;
    z-index: -1;
}

.bonus-types-section .container::before {
    top: 14%;
    left: -18px;
    box-shadow:
        183px 36px 0 0 rgba(14, 165, 233, 0.24),
        347px 128px 0 0 rgba(14, 165, 233, 0.2),
        528px -17px 0 0 rgba(14, 165, 233, 0.22),
        672px 89px 0 0 rgba(14, 165, 233, 0.18);
    animation: driftFloatA 7.2s ease-in-out infinite;
    opacity: 0.6;
}

.bonus-types-section .container::after {
    bottom: 12%;
    right: -18px;
    box-shadow:
        -197px -26px 0 0 rgba(14, 165, 233, 0.22),
        -362px -133px 0 0 rgba(14, 165, 233, 0.24),
        -541px -18px 0 0 rgba(14, 165, 233, 0.2);
    animation: driftFloatB 6.8s ease-in-out infinite;
    opacity: 0.58;
}

/* MAIN scattered squares */
.main-content .container::before,
.main-content .container::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(14, 165, 233, 0.24);
    pointer-events: none;
    z-index: -1;
}

.main-content .container::before {
    top: 6%;
    right: -18px;
    box-shadow:
        -162px 47px 0 0 rgba(6,182,212,0.22),
        -318px 121px 0 0 rgba(14, 165, 233, 0.22),
        -486px 12px 0 0 rgba(79,70,229,0.2);
    animation: driftFloatA 7.6s ease-in-out infinite;
    opacity: 0.58;
}

.main-content .container::after {
    bottom: 8%;
    left: -18px;
    box-shadow:
        211px -44px 0 0 rgba(14, 165, 233, 0.22),
        359px -137px 0 0 rgba(14, 165, 233, 0.24),
        496px -23px 0 0 rgba(14, 165, 233, 0.2),
        652px -101px 0 0 rgba(236,72,153,0.18);
    animation: driftFloatB 7.4s ease-in-out infinite;
    opacity: 0.56;
}

/* FOOTER scattered squares */
.main-footer .container::before,
.main-footer .container::after { content: none; }

.main-footer .container::before { content: none; }

.main-footer .container::after { content: none; }

/* Intro Section - Split Layout */
.intro-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.intro-header {
    text-align: center;
    margin-bottom: 80px;
}

.intro-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    padding: 8px 20px;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.05);
    display: inline-block;
    margin-bottom: 24px;
}

.intro-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--accent-primary);
    margin: 0;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.intro-image-wrapper {
    position: relative;
    min-height: 450px;
    z-index: 1;
}

.intro-shape {
    display: none;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 450px;
    z-index: 1;
}

.collage-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.collage-item-1 {
    width: 320px;
    height: 240px;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    z-index: 3;
}

.collage-item-1:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.collage-item-1:hover img {
    transform: scale(1.08);
}

.collage-item-2 {
    width: 300px;
    height: 220px;
    top: 180px;
    left: 200px;
    transform: rotate(0deg);
    z-index: 2;
}

.collage-item-2:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.collage-item-2:hover img {
    transform: scale(1.1);
}

.collage-item-3 {
    width: 210px;
    height: 260px;
    top: 210px;
    left: 60px;
    transform: rotate(-5deg);
    z-index: 1;
}

.collage-item-3:hover {
    transform: rotate(-3deg) scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.collage-item-3:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .intro-image-wrapper {
        min-height: 500px;
        order: 2;
    }
    
    .collage-container {
        height: 500px;
    }
    
    .intro-text-wrapper {
        order: 1;
        padding-right: 0;
    }
    
    .collage-item-1 {
        width: 240px;
        height: 300px;
    }
    
    .collage-item-2 {
        width: 220px;
        height: 280px;
        top: 100px;
        left: 160px;
    }
    
    .collage-item-3 {
        width: 200px;
        height: 250px;
        top: 220px;
        left: 60px;
    }
}

@media (max-width: 768px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding: 40px 0 0;
    }
    
    .intro-image-wrapper {
        min-height: 350px;
        order: 2;
    }
    
    .collage-container {
        height: 350px;
    }
    
    .intro-text-wrapper {
        max-width: 100%;
        padding: 20px;
        padding-right: 20px;
        order: 1;
    }
    
    .collage-item-1 {
        width: 260px;
        height: 195px;
    }
    
    .collage-item-2 {
        width: 240px;
        height: 180px;
        top: 150px;
        left: 140px;
    }
}


.intro-text-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.intro-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 auto 3vw auto;
    max-width: 1300px;
    text-align: center;
}

.intro-paragraph {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intro-paragraph p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-weight: 400;
}

.intro-paragraph p:first-child {
    font-size: 17px;
    color: var(--text-secondary);
    font-weight: 400;
}

.intro-paragraph p:last-child {
    margin-bottom: 0;
}

/* Trends Section */
.trends-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trends-header {
    text-align: center;
}

.trends-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.trend-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 48px;
    align-items: start;
    padding: 64px 0;
    position: relative;
}

.trend-block-left {
    grid-template-columns: 80px 1fr;
}

.trend-block-right {
    grid-template-columns: 1fr 80px;
}

.trend-block-right .trend-number {
    grid-column: 2;
    grid-row: 1;
}

.trend-block-right .trend-content {
    grid-column: 1;
    grid-row: 1;
}

.trend-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-light);
    opacity: 0.3;
    letter-spacing: -0.03em;
    position: sticky;
    top: 120px;
}

.trend-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trend-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    padding-bottom: 16px;
}

.trend-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.trend-block-right .trend-title::after {
    left: auto;
    right: 0;
}

.trend-description {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trend-description p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-weight: 400;
}

.trend-description p:last-child {
    margin-bottom: 0;
}

.trend-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    margin: 0 80px;
    position: relative;
}

.trend-divider::before,
.trend-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.4;
    transform: translateY(-50%);
}

.trend-divider::before {
    left: 20%;
}

.trend-divider::after {
    right: 20%;
}

/* Contact Section */
.contact-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    padding-bottom:5vw;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-secondary);
    background-image: url('images/contact-image.webp');
    background-size: 65%;
    background-position: bottom right;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 64px 56px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--accent-primary);
    margin: 0;
    position: relative;
    padding-bottom: 24px;
    text-align: left;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
}

.form-message-loading {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.form-message-success {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
    border: 2px solid #22c55e;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    align-self: center;
}

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

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.contact-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-btn:hover svg {
    transform: translateX(4px);
}

.contact-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Bonus Types Section */
.bonus-types-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bonus-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.bonus-types-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--accent-primary);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Bonus section decorative overlays removed; body handles background */

.bonus-type-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.bonus-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.bonus-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.bonus-type-icon {
    margin-bottom: 24px;
    width: 72px;
    height: 72px;
    background: rgba(14, 165, 233, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.22);
    box-shadow: 12px 8px 0 0 rgba(14, 165, 233, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.bonus-type-card:hover .bonus-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.bonus-type-icon img {
    width: 40px;
    height: 40px;
}

.bonus-type-content {
    flex: 1;
}

.bonus-type-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bonus-type-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 100px 0;
    background-color: transparent;
}

.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--accent-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.post-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.post-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.post-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--accent-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.post-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin: 0 0 16px 0;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.post-meta {
    margin-top: auto;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta .separator {
    color: var(--border-color);
}

/* Footer */
.main-footer {
    background: #000000;
    padding: 80px 0 40px;
    margin-top: 0;
    color: #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 24px;
    color: #f7fafc;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #f7fafc;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 48px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-divider {
        height: 50px;
    }

    .intro-header {
        margin-bottom: 60px;
    }

    .intro-wrapper {
        gap: 40px;
    }
    
    .intro-image-wrapper {
        min-height: 400px;
    }
    
    .collage-container {
        height: 400px;
    }

    .bonus-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        margin-left: auto;
    }

    .logo img {
        height: 36px;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--bg-secondary);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 24px;
        font-size: 16px;
    }

    .nav-links li a::after {
        display: none;
    }

    .hero-banner {
        padding: 100px 0 80px;
    }

    .hero-wrapper {
        gap: 40px;
    }

    .hero-label {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-title {
        padding-bottom: 24px;
    }

    .hero-title::after {
        width: 80px;
        height: 3px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    }

    .intro-section {
        padding: 80px 0;
    }

    .intro-header {
        margin-bottom: 48px;
    }

    .intro-label {
        font-size: 12px;
        padding: 6px 16px;
    }

    .intro-wrapper {
        gap: 40px;
    }

    .intro-text-wrapper {
        padding-left: 20px;
    }

    .intro-paragraph p {
        padding-left: 0;
    }

    .intro-paragraph p:first-child {
        font-size: 18px;
    }

    .intro-paragraph p:first-child::before {
        width: 3px;
        height: 3px;
    }

    .hero-visual-element {
        display: none;
    }

    .bonus-types-section {
        padding: 60px 0;
    }

    .bonus-section-header {
        margin-bottom: 40px;
    }

    .trends-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 40px 32px;
        border-radius: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text {
        gap: 20px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .contact-title {
        padding-bottom: 20px;
    }

    .contact-title::after {
        width: 80px;
        height: 3px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .trend-block {
        grid-template-columns: 60px 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .trend-block-right {
        grid-template-columns: 1fr 60px;
    }

    .trend-number {
        font-size: 36px;
        top: 100px;
    }

    .trend-content {
        gap: 24px;
    }

    .trend-title {
        font-size: 22px;
        padding-bottom: 12px;
    }

    .trend-title::after {
        width: 40px;
        height: 2px;
    }

    .trend-description p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .trend-divider {
        margin: 0 60px;
    }

    .main-content {
        padding: 60px 0;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bonus-types-grid {
        grid-template-columns: 1fr;
        width:80%;
        margin: 0 auto;
    }

    .bonus-type-card {
        width:100%;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }
    
}

/* Article Page Styles (for compatibility) */
.article-page {
    padding: 80px 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.back-button:hover {
    color: var(--accent-primary);
}

.article-main {
    max-width: 800px;
    margin: 0 auto;
}

.article-main h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-primary);
    margin: 24px 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.article-text {
    margin-top: 40px;
}

.article-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.article-text p:last-child {
    margin-bottom: 0;
}

.article-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.article-text h2:first-of-type {
    margin-top: 40px;
}

.article-text ul {
    margin-left: 24px;
    margin-bottom: 28px;
}

.article-text ul li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
