/* ===== CSS Variables ===== */
:root {
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-secondary: #dc2626;
    --color-bg: #0a0e1a;
    --color-bg-light: #111827;
    --color-bg-lighter: #1f2937;
    --color-surface: #151c2c;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-border: #1e293b;
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-bg: linear-gradient(180deg, #0a0e1a 0%, #111827 100%);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.4);
    --shadow-glow-sm: 0 0 30px rgba(249, 115, 22, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}
body.loaded .preloader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader__content {
    text-align: center;
}
.preloader__logo {
    margin-bottom: 40px;
    animation: pulse 1.5s ease-in-out infinite;
}
.preloader__logo img {
    height: 60px;
    width: auto;
}
.preloader__bar {
    width: 200px;
    height: 3px;
    background: var(--color-bg-lighter);
    border-radius: 3px;
    overflow: hidden;
}
.preloader__progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Scroll Progress ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

/* ===== Word Reveal Animation ===== */
.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-20deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.word.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ===== Character Animation ===== */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.5s ease forwards;
}
@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Reveal Wrapper ===== */
.reveal-wrapper {
    overflow: hidden;
}

/* ===== Particles Container ===== */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ===== Utility Classes ===== */
.container { max-width: 1200px; margin: 0 auto; padding: var(--container-padding); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 40px rgba(249, 115, 22, 0.5), 0 0 80px rgba(249, 115, 22, 0.3);
}

/* ===== Animation Classes ===== */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}
.animate-slide-up.delay-1 { animation-delay: 0.2s; }
.animate-slide-up.delay-2 { animation-delay: 0.4s; }

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}
.animate-fade-in.delay-1 { animation-delay: 0.2s; }
.animate-fade-in.delay-2 { animation-delay: 0.4s; }
.animate-fade-in.delay-3 { animation-delay: 0.6s; }
.animate-fade-in.delay-4 { animation-delay: 0.8s; }

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, var(--color-bg-lighter) 25%, var(--color-bg-light) 50%, var(--color-bg-lighter) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}
.animate-shimmer.delay-1 { animation-delay: 0.2s; }
.animate-shimmer.delay-2 { animation-delay: 0.4s; }
.animate-shimmer.delay-3 { animation-delay: 0.6s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 60px rgba(249, 115, 22, 0.3); }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform var(--transition-fast); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-text);
}
.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover { transform: translateY(-3px); }

.btn--glow {
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}
.btn--glow:hover {
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.6);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}
.btn--outline:hover {
    border-color: var(--color-primary);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

.btn--large { padding: 18px 40px; font-size: 16px; }

/* ===== Section Styles ===== */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}
.section__tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite;
}
.section__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section__description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    border-bottom-color: var(--color-border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.nav__logo-img { height: 40px; width: auto; }
.nav__menu { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 40px; }
.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
    border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--color-text); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__toggle, .nav__close { display: none; cursor: pointer; color: var(--color-text); }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
    animation: gradientMove 15s ease infinite;
    background-size: 200% 200%;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.shape--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    right: -10%;
    animation: float 8s ease-in-out infinite;
}
.shape--2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 20%;
    left: -5%;
    animation: float 10s ease-in-out infinite reverse;
}
.shape--3 {
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    top: 50%;
    left: 30%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 2s;
}
.shape--4 {
    width: 150px;
    height: 150px;
    background: #fbbf24;
    top: 20%;
    left: 10%;
    animation: float 9s ease-in-out infinite;
    animation-delay: 1s;
}
.shape--5 {
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
    bottom: 10%;
    right: 20%;
    animation: float 11s ease-in-out infinite reverse;
    animation-delay: 3s;
}

/* Hero Container - Two Column Layout */
.hero__container {
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 560px;
    text-align: left;
}

/* Hero Tag */
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.hero__tag-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero__title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-text);
}
.hero__title-line {
    display: block;
}
.hero__title-line--accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero__description {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

/* Hero CTAs */
.hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.hero__btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}
.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
}
.hero__btn--primary svg {
    transition: transform var(--transition-fast);
}
.hero__btn--primary:hover svg {
    transform: translateX(4px);
}

.hero__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}
.hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Platform Visual ===== */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.platform-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1.25;
}

/* Central Hub */
.pv-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.pv-hub__core {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 60px rgba(249, 115, 22, 0.2),
        inset 0 0 30px rgba(249, 115, 22, 0.1);
    z-index: 2;
}

.pv-hub__logo {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

.pv-hub__ring {
    position: absolute;
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 50%;
}

.pv-hub__ring--1 {
    inset: -30px;
    animation: ringRotate 30s linear infinite;
}
.pv-hub__ring--1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-primary);
}

.pv-hub__ring--2 {
    inset: -60px;
    border-style: dashed;
    animation: ringRotate 45s linear infinite reverse;
}
.pv-hub__ring--2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-secondary);
}

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

/* Stats Nodes */
.pv-node {
    position: absolute;
    padding: 14px 20px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    text-align: center;
    z-index: 3;
    transition: all var(--transition-normal);
}
.pv-node:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.pv-node__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 4px;
}
.pv-node__value span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pv-node__label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pv-node__pulse {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Node Positioning */
.pv-node--users {
    top: 5%;
    left: 5%;
    animation: nodeFloat 6s ease-in-out infinite;
}
.pv-node--games {
    top: 0%;
    right: 10%;
    animation: nodeFloat 6s ease-in-out infinite;
    animation-delay: 2s;
}
.pv-node--providers {
    bottom: 15%;
    right: 5%;
    animation: nodeFloat 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Module Cards */
.pv-module {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    z-index: 3;
    transition: all var(--transition-normal);
}
.pv-module:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
}

.pv-module__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 6px;
    color: var(--color-primary);
}

.pv-module__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.pv-module__status {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-left: auto;
    animation: statusBlink 3s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

/* Module Positioning */
.pv-module--payments {
    bottom: 5%;
    left: 0%;
}
.pv-module--analytics {
    top: 35%;
    left: -5%;
}
.pv-module--security {
    bottom: 35%;
    right: -5%;
}

/* Connection Lines */
.pv-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pv-line {
    fill: none;
    stroke-width: 1;
    stroke-dasharray: 4 4;
    opacity: 0.4;
    animation: lineFlow 3s linear infinite;
}

@keyframes lineFlow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -24; }
}

/* Legacy Hero Stats (kept for compatibility) */
.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__stat { text-align: center; }
.hero__stat-number {
    display: inline;
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat-plus {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* Hero Badge (legacy) */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}
.scroll-indicator__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}
.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}
.scroll-indicator span {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== Partners Section ===== */
.partners {
    padding: 80px 0;
    background: var(--color-bg-light);
    overflow: hidden;
    position: relative;
}
.partners::before, .partners::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-light) 0%, transparent 100%);
}
.partners::after {
    right: 0;
    background: linear-gradient(-90deg, var(--color-bg-light) 0%, transparent 100%);
}
.partners__label {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.partners__track { overflow: hidden; }
.partners__logos {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.partners__logos:hover { animation-play-state: paused; }
.partner__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 160px;
    height: 80px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    transition: all var(--transition-normal);
}
.partner__logo img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all var(--transition-normal);
}
.partner__logo:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}
.partner__logo:hover img {
    filter: grayscale(0%) brightness(1);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Demo Section ===== */
.demo-section {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
}
.demo__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: var(--color-surface);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.demo__glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}
.demo__content {
    position: relative;
    z-index: 1;
}
.demo__content .section__tag {
    animation: glow 2s ease-in-out infinite;
}
.demo__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
    letter-spacing: -0.02em;
}
.demo__description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.demo__btn {
    font-size: 18px;
    padding: 20px 40px;
}
.demo__visual {
    position: relative;
    z-index: 1;
}
.demo__browser {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(249, 115, 22, 0.2);
    transition: all var(--transition-normal);
}
.demo__browser:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 120px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.5);
}
.demo__browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--color-bg-lighter);
    border-bottom: 1px solid var(--color-border);
}
.demo__browser-dots {
    display: flex;
    gap: 8px;
}
.demo__browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.demo__browser-dots span:nth-child(1) { background: #ef4444; }
.demo__browser-dots span:nth-child(2) { background: #eab308; }
.demo__browser-dots span:nth-child(3) { background: #22c55e; }
.demo__browser-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}
.demo__browser-screen {
    padding: 60px 40px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg) 100%);
}
.demo__screen-content {
    text-align: center;
}
.demo__logo-placeholder {
    margin-bottom: 20px;
}
.demo__logo-placeholder img {
    height: 60px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}
.demo__screen-text {
    font-size: 16px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ===== Products Section ===== */
.products {
    padding: var(--section-padding);
    position: relative;
}
.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product__card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.product__card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.product__card:hover .product__card-glow { opacity: 1; }
.product__card:hover {
    transform: translateY(-12px);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 60px rgba(249, 115, 22, 0.2);
}
.product__hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(249, 115, 22, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.product__card:hover .product__hover-effect { opacity: 1; }

.product__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-primary);
    transition: all var(--transition-normal);
}
.product__card:hover .product__icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
}
.product__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}
.product__description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.product__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product__features li {
    font-size: 14px;
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
}
.product__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* ===== Features Section ===== */
.features {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}
.features__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    z-index: -1;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature__category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.feature__category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}
.feature__category:hover::before { transform: scaleX(1); }
.feature__category:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.03);
}
.feature__category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}
.feature__category:hover .feature__category-icon {
    transform: scale(1.1) rotate(5deg);
}
.feature__category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.feature__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feature__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.feature__check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}
.feature__check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== Templates & Customization Section ===== */
.templates {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
}
.templates__builder {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* Builder Preview */
.builder__preview { position: relative; }
.builder__browser {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.builder__browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--color-bg-lighter);
    border-bottom: 1px solid var(--color-border);
}
.builder__dots {
    display: flex;
    gap: 6px;
}
.builder__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.builder__dots span:nth-child(1) { background: #ef4444; }
.builder__dots span:nth-child(2) { background: #eab308; }
.builder__dots span:nth-child(3) { background: #22c55e; }
.builder__url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 5px 10px;
    border-radius: 4px;
}
.builder__screen {
    --bp-primary: #f97316;
    background: #0f172a;
    min-height: 420px;
    transition: background 0.3s ease;
}
.builder__screen.theme-light {
    background: #f8fafc;
}
.builder__instruction {
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* Builder Preview Sections */
[data-section] {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}
[data-section]:hover {
    outline: 2px dashed rgba(249, 115, 22, 0.5);
    outline-offset: -2px;
}
[data-section].active {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}
.bp-section-label {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.2s;
}
[data-section]:hover .bp-section-label,
[data-section].active .bp-section-label {
    opacity: 1;
}

/* BP Header */
.bp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(0,0,0,0.3);
}
.theme-light .bp-header { background: rgba(255,255,255,0.8); }
.bp-header__logo {
    font-size: 13px;
    font-weight: 800;
    color: var(--bp-primary);
    letter-spacing: 0.5px;
}
.bp-header__nav {
    display: flex;
    gap: 12px;
}
.bp-header__nav span {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}
.theme-light .bp-header__nav span { color: rgba(0,0,0,0.6); }
.bp-header__actions {
    display: flex;
    gap: 6px;
}
.bp-btn {
    font-size: 9px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}
.bp-btn--primary {
    background: var(--bp-primary);
    color: #fff;
}
.bp-btn--outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}
.theme-light .bp-btn--outline {
    border-color: rgba(0,0,0,0.2);
    color: rgba(0,0,0,0.7);
}
.bp-btn--large {
    padding: 8px 16px;
    font-size: 10px;
}

/* BP Banner */
.bp-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(249,115,22,0.2) 0%, rgba(220,38,38,0.1) 100%);
    position: relative;
    overflow: hidden;
}
.bp-banner__content { z-index: 1; }
.bp-banner__tag {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bp-primary);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.bp-banner__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.theme-light .bp-banner__title { color: #0f172a; }
.bp-banner__subtitle {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}
.theme-light .bp-banner__subtitle { color: rgba(0,0,0,0.6); }
.bp-banner__visual {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.bp-banner__circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bp-primary), #dc2626);
    opacity: 0.3;
}

/* BP Categories */
.bp-categories {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0,0,0,0.2);
    overflow-x: auto;
}
.theme-light .bp-categories { background: rgba(0,0,0,0.05); }
.bp-cat {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s;
}
.theme-light .bp-cat { color: rgba(0,0,0,0.5); }
.bp-cat.active {
    background: var(--bp-primary);
    color: #fff;
}

/* BP Games Grid */
.bp-games {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px 16px;
}
.bp-games.cols-3 { grid-template-columns: repeat(3, 1fr); }
.bp-games.cols-5 { grid-template-columns: repeat(5, 1fr); }
.bp-game {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}
.bp-game.square { border-radius: 0; }
.theme-light .bp-game {
    background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.04) 100%);
}
.bp-game:hover { transform: scale(1.05); }
.bp-game__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.bp-game:hover .bp-game__overlay { opacity: 1; }
.bp-games.no-overlay .bp-game__overlay { display: none; }

/* BP Footer */
.bp-footer {
    padding: 12px 16px;
    background: rgba(0,0,0,0.4);
}
.theme-light .bp-footer { background: rgba(0,0,0,0.05); }
.bp-footer__providers, .bp-footer__payments {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 8px;
}
.bp-footer__providers span, .bp-footer__payments span {
    width: 32px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}
.theme-light .bp-footer__providers span,
.theme-light .bp-footer__payments span {
    background: rgba(0,0,0,0.1);
}
.bp-footer__payments span {
    width: 24px;
    height: 14px;
}

/* Builder Panel */
.builder__panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.panel__header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255,255,255,0.02);
}
.panel__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}
.panel__subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
}
.panel__section {
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
}
.panel__section:last-child { border-bottom: none; }
.panel__section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}
.panel__section-title svg { color: var(--color-primary); }
.panel__control {
    margin-bottom: 14px;
}
.panel__control:last-child { margin-bottom: 0; }
.panel__control > label:first-child {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.panel__input {
    width: 100%;
    padding: 10px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 13px;
    color: var(--color-text);
    transition: all 0.2s;
}
.panel__input:focus {
    outline: none;
    border-color: var(--color-primary);
}
.panel__input::placeholder { color: var(--color-text-muted); }

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 6px;
}
.swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px var(--color-bg), 0 0 12px currentColor;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    gap: 6px;
}
.theme-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.theme-btn:hover { border-color: rgba(255,255,255,0.2); }
.theme-btn.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Style Options */
.style-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.style-btn {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.style-btn:hover { border-color: rgba(255,255,255,0.2); }
.style-btn.active {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    cursor: pointer;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--color-bg-lighter);
    border-radius: 22px;
    transition: 0.2s;
}
.toggle__slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s;
}
.toggle input:checked + .toggle__slider {
    background: var(--color-primary);
}
.toggle input:checked + .toggle__slider::before {
    transform: translateX(18px);
}

/* Panel Placeholder */
.panel__placeholder {
    text-align: center;
    padding: 20px;
    color: var(--color-text-muted);
}
.panel__placeholder svg {
    margin-bottom: 12px;
    opacity: 0.5;
}
.panel__placeholder p {
    font-size: 12px;
    line-height: 1.5;
}

/* Capabilities */
.panel__capabilities {
    padding: 16px 20px;
    background: rgba(249, 115, 22, 0.05);
}
.capabilities__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.capabilities__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.capabilities__grid span {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg);
    padding: 4px 8px;
    border-radius: 4px;
}

/* ===== Why Section ===== */
.why {
    padding: var(--section-padding);
}
.why__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.why__text .section__tag, .why__text .section__title { text-align: left; }
.why__description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}
.why__points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.why__point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}
.why__point:hover {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(8px);
}
.why__point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
}
.why__point-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.why__point-content p {
    font-size: 14px;
    color: var(--color-text-muted);
}
.why__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.why__visual-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}
.why__card {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(249, 115, 22, 0.3);
    animation: float 6s ease-in-out infinite;
}
.why__card--1 { top: 0; left: 10%; animation-delay: 0s; }
.why__card--2 { top: 45%; right: 5%; animation-delay: 2s; }
.why__card--3 { bottom: 0; left: 25%; animation-delay: 4s; }
.why__card-number {
    display: inline;
    font-size: 52px;
    font-weight: 800;
}
.why__card-plus { font-size: 40px; font-weight: 800; }
.why__card-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 4px;
}
.why__orbit {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(249, 115, 22, 0.3);
    border-radius: 50%;
}
.why__orbit-dot {
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit 15s linear infinite;
    box-shadow: 0 0 20px var(--color-primary);
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding);
    position: relative;
}
.about__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-light) 50%, var(--color-bg) 100%);
    z-index: -1;
}
.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about__text .section__tag, .about__text .section__title { text-align: center; }
.about__description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}
.about__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}
.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition-normal);
}
.about__feature:hover {
    border-color: var(--color-primary);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-4px);
}
.about__feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    position: relative;
}
.about__feature-icon::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 9px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
}
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact__info .section__tag, .contact__info .section__title { text-align: left; }
.contact__description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact__detail {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}
.contact__detail:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}
.contact__detail-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}
.contact__detail-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}
.contact__detail-value {
    font-size: 18px;
    font-weight: 600;
}
.contact__detail-value:hover { color: var(--color-primary); }
.contact__cta-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
    overflow: hidden;
}
.contact__cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}
/* ===== Contact Form ===== */
.contact__form-wrapper {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
.form__input,
.form__textarea {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--color-text);
    transition: all var(--transition-fast);
    outline: none;
}
.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-muted);
}
.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form__textarea {
    resize: vertical;
    min-height: 120px;
}
.form__submit {
    width: 100%;
    margin-top: 8px;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    padding: 100px 0 40px;
}
.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}
.footer__logo-img { height: 44px; margin-bottom: 24px; }
.footer__description {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 300px;
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}
.footer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__list a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}
.footer__list a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}
.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.footer__copyright {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero__content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__cta {
        justify-content: center;
    }
    .hero__visual {
        order: -1;
    }
    .platform-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    .pv-module--analytics {
        left: 0%;
    }
    .pv-module--security {
        right: 0%;
    }
    .products__grid, .features__grid { grid-template-columns: repeat(2, 1fr); }
    .why__content { grid-template-columns: 1fr; gap: 80px; }
    .why__visual { order: -1; min-height: 400px; }
    .contact__content { grid-template-columns: 1fr; gap: 60px; }
    .footer__content { grid-template-columns: 1fr; gap: 60px; }
    .demo__wrapper { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
    .demo__visual { order: -1; }
    .templates__builder { grid-template-columns: 1fr; }
    .builder__panel { order: -1; }
}

@media screen and (max-width: 768px) {
    :root { --section-padding: 80px 0; }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        transition: right var(--transition-normal);
        z-index: 100;
    }
    .nav__menu.show-menu { right: 0; }
    .nav__list { flex-direction: column; gap: 32px; }
    .nav__link { font-size: 24px; }
    .nav__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
    }
    .nav__toggle { display: block; }
    .nav__actions .btn { display: none; }
    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__btn {
        width: 100%;
        justify-content: center;
    }
    .platform-visual {
        max-width: 380px;
    }
    .pv-hub {
        width: 100px;
        height: 100px;
    }
    .pv-hub__logo {
        width: 40px;
    }
    .pv-hub__ring--1 {
        inset: -25px;
    }
    .pv-hub__ring--2 {
        inset: -50px;
    }
    .pv-node {
        padding: 10px 14px;
    }
    .pv-node__value {
        font-size: 20px;
    }
    .pv-node__label {
        font-size: 10px;
    }
    .pv-module {
        padding: 8px 12px;
    }
    .pv-module__icon {
        width: 24px;
        height: 24px;
    }
    .pv-module__label {
        font-size: 12px;
    }
    .hero__buttons { flex-direction: column; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
    .hero__buttons .btn { width: 100%; }
    .hero__stats { flex-direction: column; gap: 32px; }
    .products__grid, .features__grid { grid-template-columns: 1fr; }
    .why__visual { min-height: 350px; }
    .footer__links { grid-template-columns: 1fr 1fr; gap: 40px; }
    .demo__wrapper { padding: 32px; }
    .demo__btn { width: 100%; justify-content: center; }
    .builder__panel { margin-bottom: 24px; }
    .bp-header__nav { display: none; }
    .bp-banner__title { font-size: 16px; }
}

@media screen and (max-width: 480px) {
    :root { --section-padding: 60px 0; --container-padding: 0 16px; }
    .section__title { font-size: 28px; }
    .hero__title { font-size: 32px; }
    .hero__description { font-size: 15px; }
    .platform-visual {
        max-width: 320px;
    }
    .pv-hub {
        width: 80px;
        height: 80px;
    }
    .pv-hub__logo {
        width: 32px;
    }
    .pv-hub__ring--1 {
        inset: -20px;
    }
    .pv-hub__ring--2 {
        inset: -40px;
    }
    .pv-node {
        padding: 8px 12px;
    }
    .pv-node__value {
        font-size: 18px;
    }
    .pv-node__label {
        font-size: 9px;
    }
    .pv-module {
        padding: 6px 10px;
        gap: 6px;
    }
    .pv-module__icon {
        width: 20px;
        height: 20px;
    }
    .pv-module__icon svg {
        width: 12px;
        height: 12px;
    }
    .pv-module__label {
        font-size: 11px;
    }
    .product__card, .feature__category { padding: 28px; }
    .contact__form-wrapper { padding: 28px; }
    .footer__links { grid-template-columns: 1fr; }
    .about__features { flex-direction: column; align-items: center; }
    .why__card { padding: 24px 20px; }
    .why__card-number { font-size: 40px; }
    .demo__wrapper { padding: 24px; }
    .demo__title { font-size: 28px; }
}
