@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --yellow-dark: #FFB800;
    --purple: #9B59B6;
    --purple-light: #BB8FCE;
    --purple-dark: #7D3C98;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #f5f5f5;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Playfair Display', 'Times New Roman', serif;
    --font-modern: 'Poppins', 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(27, 27, 27, 0.25) 100%);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: -10vw;
    background: radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(155, 89, 182, 0.16) 0%, transparent 40%),
                radial-gradient(circle at 25% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    z-index: -3;
    animation: backgroundFloat 22s ease-in-out infinite alternate;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 215, 0, 0.04) 25%, transparent 25%, transparent 75%, rgba(255, 215, 0, 0.04) 75%),
                      linear-gradient(200deg, rgba(155, 89, 182, 0.04) 25%, transparent 25%, transparent 75%, rgba(155, 89, 182, 0.04) 75%);
    background-size: 160px 160px;
    opacity: 0.35;
    z-index: -4;
    pointer-events: none;
    animation: gridDrift 40s linear infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    z-index: 0;
}

section:not(.hero)::before,
section:not(.hero)::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.28;
    filter: blur(0px);
    z-index: -1;
    transition: opacity 0.5s ease;
}

section:not(.hero)::before {
    top: -120px;
    right: -80px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.22), transparent 70%);
    animation: floatGlowOne 18s ease-in-out infinite alternate;
}

section:not(.hero)::after {
    bottom: -130px;
    left: -90px;
    background: radial-gradient(circle at 70% 70%, rgba(155, 89, 182, 0.2), transparent 65%);
    animation: floatGlowTwo 24s ease-in-out infinite alternate;
}

.traffic-animated-bg {
    position: relative;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.18) 0%,
        rgba(207, 160, 58, 0.15) 30%,
        rgba(155, 89, 182, 0.2) 65%,
        rgba(90, 45, 120, 0.22) 100%);
    overflow: hidden;
    isolation: isolate;
    color: rgba(255, 255, 255, 0.92);
}

.traffic-animated-bg::before,
.traffic-animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(18px);
    opacity: 0.45;
}

.traffic-animated-bg::before {
    width: 620px;
    height: 620px;
    top: -260px;
    left: -220px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.32) 0%, transparent 75%);
    animation: trafficGlowOne 20s ease-in-out infinite alternate;
}

.traffic-animated-bg::after {
    width: 560px;
    height: 560px;
    bottom: -240px;
    right: -210px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.3) 0%, transparent 75%);
    animation: trafficGlowTwo 26s ease-in-out infinite alternate;
}

.traffic-animated-bg .traffic-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.traffic-animated-bg .traffic-particles::before,
.traffic-animated-bg .traffic-particles::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 215, 0, 0.2) 1px, transparent 1px);
    background-size: 90px 90px;
    animation: particleDrift 40s linear infinite;
    opacity: 0.22;
}

.traffic-animated-bg .traffic-particles::after {
    animation-direction: reverse;
    opacity: 0.2;
    background-image: radial-gradient(rgba(155, 89, 182, 0.26) 1px, transparent 1px);
    background-size: 70px 70px;
}

.traffic-animated-bg h1,
.traffic-animated-bg h2,
.traffic-animated-bg h3,
.traffic-animated-bg h4,
.traffic-animated-bg h5,
.traffic-animated-bg h6 {
    color: rgba(255, 255, 255, 0.96);
}

.traffic-animated-bg p,
.traffic-animated-bg li,
.traffic-animated-bg span,
.traffic-animated-bg a {
    color: rgba(255, 255, 255, 0.9);
}

.traffic-animated-bg a {
    color: rgba(255, 215, 0, 0.9);
}

.traffic-animated-bg .btn-primary,
.traffic-animated-bg .btn-outline {
    color: var(--primary-black);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 184, 0, 0.95) 100%);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.35);
    border: none;
}

.traffic-animated-bg .btn-primary:hover,
.traffic-animated-bg .btn-outline:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.45);
    transform: translateY(-2px);
}

.traffic-animated-bg ul li::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(155, 89, 182, 0.9));
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.text-enhanced {
    position: relative;
    padding: 3rem 2.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(250, 250, 250, 0.94));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(155, 89, 182, 0.05);
    overflow: hidden;
}

.text-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    opacity: 0.75;
    z-index: -1;
}

.text-enhanced::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 20% 20%, rgba(155, 89, 182, 0.12), transparent 70%);
    top: -180px;
    right: -120px;
    opacity: 0.5;
    z-index: -1;
    filter: blur(10px);
}

.text-enhanced h2,
.text-enhanced h3 {
    font-family: var(--font-accent);
    letter-spacing: 0.015em;
    position: relative;
}

.text-enhanced h2::after,
.text-enhanced h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(155, 89, 182, 0.6));
    border-radius: 999px;
}

.text-enhanced p {
    font-family: var(--font-modern);
    font-size: 1.15rem;
    color: rgba(30, 30, 30, 0.9);
    line-height: 1.9;
    letter-spacing: 0.005em;
}

.text-enhanced p::first-letter {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    float: left;
    line-height: 1;
    margin-right: 0.4rem;
    color: rgba(155, 89, 182, 0.88);
    font-weight: 600;
}

.text-enhanced ul,
.text-enhanced ol {
    padding-left: 1.75rem;
}

.text-enhanced li {
    font-family: var(--font-modern);
    font-size: 1.1rem;
    color: rgba(30, 30, 30, 0.8);
    margin-bottom: 0.6rem;
    position: relative;
}

.text-enhanced ul li::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    left: -1.3rem;
    top: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--purple));
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}
/* Navigation */
.navbar {
    background: var(--primary-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-selector-wrapper {
    margin-right: 2rem;
}

.language-selector {
    background: var(--secondary-black);
    border: 2px solid var(--purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.language-selector:hover {
    border-color: var(--yellow);
    background: var(--dark-gray);
}

.language-selector:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.language-selector option {
    background: var(--secondary-black);
    color: var(--white);
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--yellow);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > a span {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-black);
    min-width: 220px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--purple);
    color: var(--white);
    padding-left: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--yellow);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--purple);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--primary-black);
}

.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--purple-dark);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, #0a0a0f 0%, #1a0f1f 25%, #2d1a3d 50%, #1a0f1f 75%, #0a0a0f 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    padding: 8rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(155, 89, 182, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 89, 182, 0.02) 1px, transparent 1px);
    background-size: 
        100px 100px,
        100px 100px,
        50px 50px,
        50px 50px;
    background-position: 
        0 0,
        0 0,
        25px 25px,
        25px 25px;
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    animation: gradientShift 15s ease-in-out infinite alternate;
    z-index: 0;
}

/* Interactive Logo */
.hero-logo-interactive {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.3rem;
    font-size: 9.3rem;
    font-weight: 900;
    z-index: 30;
    pointer-events: none;
    opacity: 1;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.logo-letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    position: relative;
    cursor: default;
    user-select: none;
    line-height: 1;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

.logo-letter::after {
    content: attr(data-letter);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6) 0%, rgba(155, 89, 182, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(25px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.logo-letter:hover::after {
    opacity: 1;
}

.hero-title-main {
    position: relative;
    z-index: 25;
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin-top: 14rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.02em;
    padding: 0 2rem;
}

.hero-title-main span {
    display: block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-subtitle .highlight {
    background: linear-gradient(135deg, 
        var(--yellow) 0%, 
        #ffed4e 30%,
        var(--purple-light) 70%,
        #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-decorative-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.benefits-decorative-bg::before,
.benefits-decorative-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
}

.benefits-decorative-bg::before {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: benefitsFloat1 20s ease-in-out infinite;
}

.benefits-decorative-bg::after {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%);
    animation: benefitsFloat2 25s ease-in-out infinite;
}

.benefits-connection-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.benefits-connection-lines svg {
    width: 100%;
    height: 100%;
}

.benefits-connection-lines .connection-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-dasharray: 10 5;
    animation: lineFlow 8s linear infinite;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-black);
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    position: relative;
    perspective: 1000px;
    height: 500px;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.98) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.benefit-card-back {
    transform: rotateY(180deg);
    justify-content: space-between;
}

.benefit-card-front {
    justify-content: flex-start;
}

.benefit-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    position: relative;
    z-index: 2;
    transform: scale(1.2);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.4) rotate(360deg);
}

.benefit-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.benefit-card:hover .benefit-icon-glow {
    opacity: 1;
}

.benefit-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-black);
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-stats {
    display: flex;
    gap: 2rem;
    margin-top: auto;
    padding-top: 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .stat-item {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.benefit-card-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    border-radius: 20px;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--yellow), var(--purple));
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: shapeMorph1 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    border-radius: 50%;
    animation: shapeMorph2 10s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    animation: shapeRotate 12s linear infinite;
}

.benefit-card:hover .geometric-shape {
    opacity: 0.2;
    transform: scale(1.2);
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg,
            rgba(255, 215, 0, 0.05) 90deg,
            transparent 180deg,
            rgba(155, 89, 182, 0.05) 270deg,
            transparent 360deg);
    animation: rotateGradient 30s linear infinite;
    opacity: 0.6;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        conic-gradient(from 180deg at 50% 50%, 
            transparent 0deg,
            rgba(155, 89, 182, 0.04) 90deg,
            transparent 180deg,
            rgba(255, 215, 0, 0.04) 270deg,
            transparent 360deg);
    animation: rotateGradient 40s linear infinite reverse;
    opacity: 0.5;
}

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

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

@keyframes growthFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, 60px) scale(1.3);
    }
}

@keyframes growthFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-60px, -60px) scale(1.25);
    }
}

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

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes lineDraw {
    0% {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
    }
    100% {
        stroke-dasharray: 200;
        stroke-dashoffset: 0;
    }
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card-back p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.benefit-card-back .btn-link {
    align-self: flex-start;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card-back .btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    transition: width 0.3s ease;
}

.benefit-card-back .btn-link:hover::after {
    width: 100%;
}

/* Growth Section */
.growth-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, #1a0f1f 0%, #2d1a3d 30%, #1a0f1f 70%, #0a0a0f 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.growth-decorative-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.growth-decorative-bg::before,
.growth-decorative-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
}

.growth-decorative-bg::before {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: growthFloat1 15s ease-in-out infinite;
}

.growth-decorative-bg::after {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.2) 0%, transparent 70%);
    animation: growthFloat2 20s ease-in-out infinite;
}

.growth-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: particleMove 20s linear infinite;
    opacity: 0.3;
}

.growth-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.growth-header .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 50%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-description {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.growth-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.growth-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.growth-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.growth-stat-card:hover::before {
    opacity: 1;
}

.growth-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    animation: iconBounce 2s ease-in-out infinite;
    position: relative;
}

.growth-stat-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.growth-stat-card:hover .growth-stat-icon::before {
    opacity: 1;
}

.growth-stat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.growth-stat-card:hover .growth-stat-icon svg {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transform: scale(1.1);
}

.growth-stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.growth-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.growth-stat-chart {
    width: 100%;
    height: 40px;
    margin-top: 1rem;
}

.growth-stat-chart svg {
    width: 100%;
    height: 100%;
}

.growth-line {
    fill: none;
    stroke: url(#growthGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    animation: lineDraw 2s ease-out forwards;
}

.growth-companies {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.growth-companies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.growth-companies-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-companies-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.company-logo-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.company-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-logo-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
}

.company-logo-card:hover::before {
    opacity: 1;
}

.company-logo {
    width: 100%;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s ease;
}

.company-logo svg {
    width: 100%;
    height: 100%;
    max-width: 140px;
}

.company-logo-card:hover .company-logo {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.company-logo-card[data-company="techflow"] .company-logo {
    color: #4A90E2;
}

.company-logo-card[data-company="nexus"] .company-logo {
    color: #9B59B6;
}

.company-logo-card[data-company="vertex"] .company-logo {
    color: #E74C3C;
}

.company-logo-card[data-company="pulse"] .company-logo {
    color: #F39C12;
}

.company-logo-card[data-company="apex"] .company-logo {
    color: #1ABC9C;
}

.company-logo-card[data-company="zenith"] .company-logo {
    color: #3498DB;
}

.company-growth {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.growth-percent {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.growth-cta {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

/* Formats Section */
.formats-section {
    padding: 5rem 0;
    background: var(--white);
}

.formats-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--purple);
    color: var(--white);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.format-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--yellow);
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
    border-left-color: var(--purple);
}

.format-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.format-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.format-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.format-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.format-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.format-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--purple);
    font-weight: bold;
}

/* Enhanced Format Cards */
.format-card-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.format-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--purple) 50%, var(--yellow) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.format-visual {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.format-icon-wrapper {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.format-icon-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

.format-icon-large svg {
    width: 24px;
    height: 24px;
}

.format-preview {
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.format-preview-screen {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.format-preview-content {
    width: 100%;
    height: 120px;
    border-radius: 4px;
    position: relative;
}

/* Video Preview */
.video-preview {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 12px solid var(--purple);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.video-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: waveMove 1s linear infinite;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

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

/* Native Preview */
.native-preview {
    background: #ffffff;
    padding: 0.75rem;
}

.native-article {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.native-line {
    height: 8px;
    background: linear-gradient(90deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 4px;
}

.native-line.short {
    width: 60%;
}

.native-ad-block {
    height: 60px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    border-radius: 6px;
    margin: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-black);
    animation: shimmer 2s ease-in-out infinite;
}

.native-ad-block::before {
    content: 'Sponsored';
    position: absolute;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Banner Preview */
.banner-preview {
    background: #f5f5f5;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.banner-examples {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.banner-sample {
    background: linear-gradient(135deg, var(--purple) 0%, var(--yellow) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.banner-728x90 {
    width: 100%;
    height: 25px;
    max-width: 200px;
}

.banner-300x250 {
    width: 100%;
    height: 60px;
    max-width: 120px;
    margin: 0 auto;
}

.banner-320x50 {
    width: 100%;
    height: 15px;
    max-width: 160px;
}

.banner-sample::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bannerShine 3s ease-in-out infinite;
}

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

/* Interstitial Preview */
.interstitial-preview {
    background: #000000;
    position: relative;
}

.interstitial-ad {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interstitial-content {
    width: 80%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: interstitialGlow 2s ease-in-out infinite;
}

@keyframes interstitialGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.format-content {
    padding: 2rem;
}

.format-card-enhanced .format-content .format-badge {
    margin-bottom: 1rem;
}

.format-card-enhanced .format-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.format-card-enhanced .format-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.format-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(155, 89, 182, 0.25);
}

.format-card-enhanced:hover .format-visual {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
}

.format-card-enhanced:hover .format-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

/* Responsive adjustments for format cards */
@media (max-width: 768px) {
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-visual {
        min-height: 160px;
        padding: 1.5rem;
    }
    
    .format-preview {
        max-width: 240px;
    }
    
    .format-content {
        padding: 1.5rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--secondary-black);
    color: var(--white);
}

.why-choose-section .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card .feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--primary-black);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary-black);
    color: var(--yellow);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-black);
}

.cta-section .btn-outline {
    border-color: var(--primary-black);
    color: var(--primary-black);
}

.cta-section .btn-outline:hover {
    background: var(--primary-black);
    color: var(--yellow);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--light-gray);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--yellow);
    color: var(--primary-black);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--purple-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .language-selector-wrapper {
        margin-right: 1rem;
        order: -1;
    }

    .language-selector {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown > a span {
        margin-left: auto;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 0 2rem;
    }

    .hero {
        padding: 5rem 0;
        min-height: auto;
    }
    
    .hero-logo-interactive {
        font-size: 3.3rem;
        opacity: 1;
        gap: 0.2rem;
        z-index: 30;
        top: 15%;
    }
    
    .hero-title-main {
        margin-top: 10rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .formats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .growth-stat-card {
        padding: 1.5rem;
    }
    
    .growth-stat-value {
        font-size: 2.2rem;
    }
    
    .growth-stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        height: 450px;
        perspective: none;
    }
    
    .benefit-card-inner {
        transform: none !important;
    }
    
    .benefit-card-front,
    .benefit-card-back {
        position: relative;
        transform: none !important;
        backface-visibility: visible;
    }
    
    .benefit-card:hover .benefit-card-inner {
        transform: none !important;
    }
    
    .benefit-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a,
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo-interactive {
        font-size: 2.7rem;
        opacity: 1;
        z-index: 30;
        top: 12%;
    }
    
    .hero-title-main {
        margin-top: 8rem;
    }

    .container {
        padding: 0 15px;
    }

    .benefit-card,
    .format-card,
    .feature-card {
        padding: 1.5rem;
    }
}

/* Page Content Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--purple-dark) 100%);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.page-header::before {
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, transparent 70%);
    animation: headerGlowOne 26s ease-in-out infinite alternate;
}

.page-header::after {
    bottom: -200px;
    right: -160px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.45) 0%, transparent 70%);
    animation: headerGlowTwo 32s ease-in-out infinite alternate;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    padding: 1rem 0;
    background: var(--light-gray);
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--purple-dark);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--gray);
}

.content-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(155, 89, 182, 0.04) 100%);
    opacity: 0.9;
    z-index: -1;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-black);
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.content-section ul, .content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.content-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);
    border-left-color: var(--purple);
}

.content-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.18), transparent 70%);
    top: -80px;
    right: -60px;
    opacity: 0.6;
    filter: blur(10px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.content-card:hover::after {
    transform: translate(-20px, 20px);
    opacity: 0.8;
}

.content-card h3 {
    margin-top: 0;
    color: var(--purple);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    border-color: var(--yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 65%);
    top: -100px;
    right: -80px;
    opacity: 0.6;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.feature-item:hover::before {
    transform: translate(-10px, 25px);
    opacity: 0.85;
}

.feature-item .icon-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.icon-bubble {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(155, 89, 182, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(155, 89, 182, 0.25);
    animation: floatIcon 7s ease-in-out infinite;
}

.icon-bubble::after {
    content: '';
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

.benefit-card .icon-bubble {
    margin-bottom: 1.5rem;
}

.icon-bubble[data-icon="analytics"]::after { background-image: url('assets/icons/analytics.svg'); }
.icon-bubble[data-icon="revenue"]::after { background-image: url('assets/icons/revenue.svg'); }
.icon-bubble[data-icon="handshake"]::after { background-image: url('assets/icons/handshake.svg'); }
.icon-bubble[data-icon="shield"]::after { background-image: url('assets/icons/shield.svg'); }
.icon-bubble[data-icon="bolt"]::after { background-image: url('assets/icons/bolt.svg'); }
.icon-bubble[data-icon="controls"]::after { background-image: url('assets/icons/controls.svg'); }
.icon-bubble[data-icon="palette"]::after { background-image: url('assets/icons/palette.svg'); }
.icon-bubble[data-icon="diamond"]::after { background-image: url('assets/icons/diamond.svg'); }
.icon-bubble[data-icon="credit-card"]::after { background-image: url('assets/icons/credit-card.svg'); }
.icon-bubble[data-icon="laptop"]::after { background-image: url('assets/icons/laptop.svg'); }
.icon-bubble[data-icon="growth"]::after { background-image: url('assets/icons/growth.svg'); }
.icon-bubble[data-icon="mobile"]::after { background-image: url('assets/icons/mobile.svg'); }
.icon-bubble[data-icon="target"]::after { background-image: url('assets/icons/target.svg'); }
.icon-bubble[data-icon="team"]::after { background-image: url('assets/icons/team.svg'); }
.icon-bubble[data-icon="cycle"]::after { background-image: url('assets/icons/cycle.svg'); }
.icon-bubble[data-icon="rocket"]::after { background-image: url('assets/icons/rocket.svg'); }
.icon-bubble[data-icon="robot"]::after { background-image: url('assets/icons/robot.svg'); }
.icon-bubble[data-icon="global-network"]::after { background-image: url('assets/icons/global-network.svg'); }
.icon-bubble[data-icon="globe"]::after { background-image: url('assets/icons/globe.svg'); }
.icon-bubble[data-icon="time"]::after { background-image: url('assets/icons/time.svg'); }
.icon-bubble[data-icon="mail"]::after { background-image: url('assets/icons/mail.svg'); }
.icon-bubble[data-icon="telegram"]::after { background-image: url('assets/icons/telegram.svg'); }
.icon-bubble[data-icon="video"]::after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
}
.icon-bubble[data-icon="content"]::after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E");
}
.icon-bubble[data-icon="display"]::after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z'/%3E%3C/svg%3E");
}
.icon-bubble[data-icon="fullscreen"]::after { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a1a'%3E%3Cpath d='M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z'/%3E%3C/svg%3E");
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.format-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out both;
}

.benefit-card:nth-child(2),
.format-card:nth-child(2),
.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3),
.format-card:nth-child(3),
.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4),
.format-card:nth-child(4),
.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

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

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-20px, 20px) scale(1.05); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

@keyframes orbPulse {
    0% { transform: translate(0, 0) scale(0.9); opacity: 0.55; }
    50% { transform: translate(10px, -12px) scale(1.05); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(0.9); opacity: 0.55; }
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

@keyframes heroDrift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-40px, 30px, 0) scale(1.08); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

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

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

@keyframes letterGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

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

@keyframes backgroundFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-20px, 15px, 0) scale(1.04); }
    100% { transform: translate3d(15px, -25px, 0) scale(0.98); }
}

@keyframes gridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-160px, 160px, 0); }
}

@keyframes floatGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.24; }
    50% { transform: translate3d(-12px, 18px, 0) scale(1.05); opacity: 0.3; }
    100% { transform: translate3d(8px, -12px, 0) scale(0.96); opacity: 0.22; }
}

@keyframes floatGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.22; }
    50% { transform: translate3d(18px, -14px, 0) scale(1.07); opacity: 0.28; }
    100% { transform: translate3d(-10px, 16px, 0) scale(0.94); opacity: 0.2; }
}

@keyframes trafficGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.58; }
    100% { transform: translate3d(35px, 35px, 0) scale(1.08); opacity: 0.72; }
}

@keyframes trafficGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.52; }
    100% { transform: translate3d(-30px, -40px, 0) scale(0.95); opacity: 0.66; }
}

@keyframes particleDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-25%, -25%, 0); }
}

@keyframes headerGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(40px, 40px, 0) scale(1.05); }
}

@keyframes headerGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-30px, -40px, 0) scale(0.95); }
}

@keyframes backgroundFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-20px, 15px, 0) scale(1.04); }
    100% { transform: translate3d(15px, -25px, 0) scale(0.98); }
}

@keyframes gridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-160px, 160px, 0); }
}

@keyframes floatGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.24; }
    50% { transform: translate3d(-12px, 18px, 0) scale(1.05); opacity: 0.3; }
    100% { transform: translate3d(8px, -12px, 0) scale(0.96); opacity: 0.22; }
}

@keyframes floatGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.22; }
    50% { transform: translate3d(18px, -14px, 0) scale(1.07); opacity: 0.28; }
    100% { transform: translate3d(-10px, 16px, 0) scale(0.94); opacity: 0.2; }
}

@keyframes headerGlowOne {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(40px, 40px, 0) scale(1.05); }
}

@keyframes headerGlowTwo {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-30px, -40px, 0) scale(0.95); }
}

/* Footer contacts */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.contact-link {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--yellow-light);
}

.contact-feature .feature-item {
    align-items: flex-start;
}

.contact-feature .feature-item p,
.contact-feature .feature-item a {
    color: var(--gray);
}

.contact-feature .feature-item a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-feature .feature-item a:hover {
    color: var(--purple);
}

