.elementor-4122 .elementor-element.elementor-element-de59d50{--display:flex;--min-height:1440px;}@media(min-width:768px){.elementor-4122 .elementor-element.elementor-element-de59d50{--content-width:1429px;}}/* Start custom CSS for html, class: .elementor-element-d75432e *//* === ROKOMAY FUTURISTIC DARK THEME === */

/* --- FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap');

/* --- THEME VARIABLES === */
:root {
    --bg-dark: #080a13;
    --glass-bg: rgba(17, 25, 40, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #B0C4DE;
    --accent-cyan: #00BFFF;
    --accent-magenta: #FF00FF;
}

/* --- GLOBAL STYLES --- */
.rokomay-futuristic-dark {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
}

.rokomay-futuristic-dark .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.rokomay-futuristic-dark section {
    padding: 120px 0;
    position: relative;
}

.rokomay-futuristic-dark h1, 
.rokomay-futuristic-dark h2, 
.rokomay-futuristic-dark h3 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -1px;
}

.rokomay-futuristic-dark h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}
.rokomay-futuristic-dark h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 80px;
}
.rokomay-futuristic-dark h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.rokomay-futuristic-dark p {
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.rokomay-futuristic-dark .btn-glow {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3), inset 0 0 10px rgba(0, 191, 255, 0.2);
}
.rokomay-futuristic-dark .btn-glow:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.7);
    transform: translateY(-3px);
}

/* --- HERO SECTION --- */
.hero-futuristic {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0;
}
.hero-futuristic #hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}
.hero-futuristic .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 10, 19, 0.7);
    z-index: 1;
}
.hero-futuristic .tagline {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 20px auto 40px auto;
}

/* --- SHOWCASE GRID (YOUR IMAGES) --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}
.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.showcase-item:hover img {
    transform: scale(1.05);
}
.showcase-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(8, 10, 19, 0.8), transparent);
    color: white;
}
.showcase-item h3 {
    font-size: 1.3rem;
}
.showcase-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Grid item placements */
.item1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.item2 { grid-column: 3 / 4; grid-row: 1 / 3; }
.item3 { grid-column: 4 / 5; grid-row: 1 / 2; }
.item4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item6 { grid-column: 4 / 5; grid-row: 2 / 3; }

/* --- PROCESS SECTION --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.process-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}
.process-card .step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--accent-cyan);
}

/* --- CTA SECTION --- */
.cta-futuristic {
    text-align: center;
}
.cta-futuristic .container {
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 80px 40px;
}
.cta-futuristic p {
    max-width: 600px;
    margin: 20px auto 30px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(auto-fit, 300px);
    }
    .item1, .item2, .item3, .item4, .item5, .item6 {
        grid-column: auto;
        grid-row: auto;
    }
}/* End custom CSS */

/* Start custom CSS for container, class: .elementor-element-de59d50 *//* === ROKOMAY CREATIVE DARK THEME === */

/* --- FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* --- ROOT VARIABLES --- */
:root {
    --bg-charcoal: #111111;
    --bg-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent-gold: #FFC107;
    --border-color: rgba(255, 255, 255, 0.1);
}

/* --- GLOBAL STYLES --- */
.rokomay-creative-dark {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-charcoal);
    color: var(--text-secondary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rokomay-creative-dark .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rokomay-creative-dark section {
    padding: 120px 0;
    position: relative;
}

.rokomay-creative-dark h1,
.rokomay-creative-dark h2,
.rokomay-creative-dark h3 {
    color: var(--text-primary);
    font-weight: 700;
}

.rokomay-creative-dark h1 {
    font-size: clamp(3rem, 6vw, 4.25rem);
    line-height: 1.2;
    letter-spacing: -2px;
}
.rokomay-creative-dark h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}
.rokomay-creative-dark h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.rokomay-creative-dark p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- BUTTONS --- */
.rokomay-creative-dark .btn-gold {
    display: inline-block;
    background-color: var(--accent-gold);
    color: #111;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.rokomay-creative-dark .btn-gold:hover {
    background-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
}

/* --- HERO SECTION --- */
.rokomay-creative-dark .hero-creative {
    padding: 100px 0;
}
.rokomay-creative-dark .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rokomay-creative-dark .hero-creative .tagline {
    margin: 24px 0 40px;
}
.rokomay-creative-dark .hero-image {
    background: linear-gradient(45deg, var(--accent-gold), #ff7b07);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rokomay-creative-dark .hero-image svg {
    width: 100%;
    height: auto;
}

/* --- FEATURES SECTION --- */
.rokomay-creative-dark .features-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.rokomay-creative-dark .feature-card-creative {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}
.rokomay-creative-dark .feature-card-creative:hover {
    transform: translateY(-10px);
    background-color: #222;
    border-top-color: var(--accent-gold);
}
.rokomay-creative-dark .feature-card-creative .icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

/* --- PROCESS SECTION --- */
.rokomay-creative-dark .process-creative {
    background-color: var(--bg-card);
}
.rokomay-creative-dark .process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.rokomay-creative-dark .process-step:last-child {
    border-bottom: none;
}
.rokomay-creative-dark .step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-align: center;
}

/* --- PLATFORM SHOWCASE SECTION --- */
.rokomay-creative-dark .platform-showcase .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.rokomay-creative-dark .platform-showcase img {
    height: 40px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.rokomay-creative-dark .platform-showcase img:hover {
    opacity: 1;
    filter: none;
}

/* --- CTA SECTION --- */
.rokomay-creative-dark .cta-creative {
    background: linear-gradient(45deg, var(--accent-gold), #ff7b07);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
}
.rokomay-creative-dark .cta-creative h2,
.rokomay-creative-dark .cta-creative p {
    color: #111;
}
.rokomay-creative-dark .cta-creative p {
    max-width: 600px;
    margin: 20px auto 30px;
}
.rokomay-creative-dark .cta-creative .btn-gold {
    background-color: #111;
    color: #fff;
}
.rokomay-creative-dark .cta-creative .btn-gold:hover {
    background-color: #fff;
    color: #111;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .rokomay-creative-dark .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rokomay-creative-dark .hero-image {
        order: -1;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .rokomay-creative-dark section {
        padding: 80px 0;
    }
    .rokomay-creative-dark .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
}/* End custom CSS */

