/* ============================================================
   ROKYA — Premium Creative Marketplace | Landing Page CSS
   سوق رقمي إبداعي | حاز
   ============================================================ */

/* ===========================
   Base & Resets
   =========================== */
body {
    overflow-x: hidden;
    background: #0a0816 !important;
    color: #e5e7eb;
}

.body-content {
    margin-top: 0 !important;
}

/* ===========================
   CSS Design Tokens
   =========================== */
:root {
    --rky-dark:       #080812;
    --rky-dark2:      #14122a;
    --rky-surface:    #0a0816;
    --rky-surface-2:  #14122a;
    --rky-surface-3:  #1c1a35;
    --rky-purple:     #7c3aed;
    --rky-purple-lt:  #a78bfa;
    --rky-bg:         #0a0816;
    --rky-bg-card:    #14122a;
    --rky-light-bg:   #14122a;
    --rky-white:      #0a0816;
    --rky-text:       #f3f4f6;
    --rky-muted:      #9ca3af;
    --rky-border:     rgba(255,255,255,0.08);
    --rky-radius:     20px;
    --rky-ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --rky-trans:      all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --rky-shadow:     0 4px 24px rgba(0,0,0,0.25);
    --rky-shadow-lg:  0 20px 60px rgba(0,0,0,0.4);
}

/* ===========================
   Scroll Progress Bar
   =========================== */
#rky-scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to left, var(--main, #c9a84c), var(--rky-purple));
    z-index: 999999;
    transform: scaleX(0);
    transform-origin: right center;
    will-change: transform;
    pointer-events: none;
}

html[lang="en"] #rky-scroll-progress {
    transform-origin: left center;
}

/* ===========================
   Navbar Redesign
   =========================== */
header {
    background: rgba(10, 8, 22, 0.97) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35) !important;
    transition: background 0.25s ease, box-shadow 0.25s ease !important;
}

@media (min-width: 992px) and (hover: hover) {
    header {
        backdrop-filter: blur(24px) saturate(1.8);
        -webkit-backdrop-filter: blur(24px) saturate(1.8);
    }
}

section[id],
.rky-stats-section[id] {
    scroll-margin-top: 88px;
    scroll-margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    section[id],
    .rky-stats-section[id] {
        scroll-margin-top: 76px;
        scroll-margin-bottom: 72px;
    }

    html {
        scroll-behavior: smooth;
    }
}

header.rky-scrolled {
    background: rgba(10, 8, 22, 0.99) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.45) !important;
}

/* Hide hamburger — mobile uses bottom nav */
.close-open-nav {
    display: none !important;
}

header .rky-lang-dropdown .dropdown-toggle {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 10px;
    transition: var(--rky-trans);
}

header .rky-lang-dropdown .dropdown-toggle:hover {
    color: var(--main, #c9a84c) !important;
    background: rgba(255, 255, 255, 0.06);
}

header .rky-lang-dropdown .dropdown-menu {
    background: #14122a;
    border-color: rgba(255, 255, 255, 0.1);
}

header .rky-lang-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
}

header .rky-lang-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--main, #c9a84c);
}

.nav_bar a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    padding: 6px 2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav_bar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--main);
    border-radius: 2px;
    transition: width 0.35s var(--rky-ease);
}

.nav_bar a:hover::after,
.nav_bar a.active::after {
    width: 100%;
}

.nav_bar a:hover,
.nav_bar a.active {
    color: var(--main) !important;
}

header .btn-main {
    border-radius: 12px !important;
    font-weight: 600;
    transition: var(--rky-trans) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

header .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}

/* ===========================
   Hero / Slider Section
   =========================== */
.rky-hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--rky-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Animated gradient mesh */
.rky-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 85% 70%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Animated blobs */
.rky-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.rky-blob-1 {
    width: 550px;
    height: 550px;
    background: var(--main, #c9a84c);
    opacity: 0.18;
    top: -180px;
    right: -120px;
    animation: rkyBlob1 10s ease-in-out infinite;
}

.rky-blob-2 {
    width: 450px;
    height: 450px;
    background: var(--rky-purple);
    opacity: 0.2;
    bottom: -120px;
    left: -120px;
    animation: rkyBlob2 12s ease-in-out infinite;
}

.rky-blob-3 {
    width: 300px;
    height: 300px;
    background: #2563eb;
    opacity: 0.12;
    top: 45%;
    right: 35%;
    animation: rkyBlob3 14s ease-in-out infinite;
}

/* Floating geometric shapes */
.rky-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.rky-shape-1 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 18px;
    top: 22%;
    left: 12%;
    animation: rkyFloat 6s ease-in-out infinite, rkyRotateSlow 20s linear infinite;
}

.rky-shape-2 {
    width: 45px;
    height: 45px;
    background: rgba(124,58,237,0.3);
    border-radius: 50%;
    top: 65%;
    left: 7%;
    animation: rkyFloat 9s ease-in-out infinite 1.5s;
}

.rky-shape-3 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(167,139,250,0.35);
    border-radius: 12px;
    top: 28%;
    right: 18%;
    animation: rkyFloat 7.5s ease-in-out infinite 0.8s, rkyRotateSlow 18s linear infinite reverse;
}

.rky-shape-4 {
    width: 35px;
    height: 35px;
    background: rgba(201,168,76,0.25);
    border-radius: 8px;
    bottom: 28%;
    right: 12%;
    animation: rkyFloat 8s ease-in-out infinite 2s, rkyRotateSlow 25s linear infinite;
}

.rky-shape-5 {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    left: 30%;
    animation: rkyFloat 5s ease-in-out infinite 3s;
}

/* Sparkle stars */
.rky-sparkle {
    position: absolute;
    color: var(--main, #c9a84c);
    font-size: 22px;
    pointer-events: none;
    z-index: 1;
    animation: rkySpark 3s ease-in-out infinite;
}
.rky-sparkle:nth-child(1) { top: 18%; right: 42%; animation-delay: 0s; }
.rky-sparkle:nth-child(2) { top: 55%; left: 22%; animation-delay: 1.2s; font-size: 15px; }
.rky-sparkle:nth-child(3) { bottom: 22%; right: 30%; animation-delay: 2.1s; font-size: 18px; }
.rky-sparkle:nth-child(4) { top: 35%; left: 40%; animation-delay: 0.6s; font-size: 12px; }

/* Hero inner layout */
.rky-hero-inner {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
    min-height: 100vh;
}

/* Hero text */
.rky-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 24px;
    animation: rkyFadeUp 0.8s ease both;
}

.rky-hero-dot {
    width: 8px;
    height: 8px;
    background: var(--main, #c9a84c);
    border-radius: 50%;
    animation: rkyPulseDot 2s ease-in-out infinite;
}

.rky-hero-title {
    font-size: clamp(2.1rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: rkyFadeUp 0.8s ease 0.15s both;
}

.rky-hero-title .rky-gradient-text {
    background: linear-gradient(135deg, var(--main, #c9a84c) 0%, #f59e0b 50%, var(--main, #c9a84c) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: rkyGradShift 3s linear infinite;
}

.rky-hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 480px;
    animation: rkyFadeUp 0.8s ease 0.3s both;
}

/* Platform pills */
.rky-platform-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    animation: rkyFadeUp 0.8s ease 0.45s both;
}

.rky-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    transition: all 0.3s ease;
    cursor: default;
}

.rky-pill i { font-size: 11px; color: var(--main, #c9a84c); }

.rky-pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--main, #c9a84c);
    color: var(--main, #c9a84c);
}

/* CTA Buttons */
.rky-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: rkyFadeUp 0.8s ease 0.6s both;
}

.rky-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main2);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--rky-trans);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    text-decoration: none;
}

.rky-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
    color: #fff !important;
}

.rky-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff !important;
    padding: 13px 26px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--rky-trans);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.rky-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--main, #c9a84c);
    color: var(--main, #c9a84c) !important;
    transform: translateY(-3px);
}

/* Hero visual (phone mockup) */
.rky-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rkyFadeLeft 0.9s ease 0.25s both;
}

.rky-phone-wrap {
    position: relative;
    width: 260px;
}

.rky-phone-wrap img {
    width: 100%;
    border-radius: 34px;
    box-shadow:
        0 40px 100px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.08),
        0 0 60px rgba(201,168,76,0.2);
    animation: rkyFloat 6s ease-in-out infinite;
}

/* Floating info cards on hero */
.rky-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 10;
}

.rky-float-card-1 {
    top: 8%;
    right: -90px;
    animation: rkyFloat 5s ease-in-out infinite 0.5s;
}

.rky-float-card-2 {
    bottom: 12%;
    left: -85px;
    animation: rkyFloat 7s ease-in-out infinite 1.5s;
}

.rky-fci {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--main2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.rky-fct small {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.78);
}

.rky-fct span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Hero wave divider */
.rky-wave {
    position: relative;
    z-index: 4;
    line-height: 0;
    margin-top: -2px;
}

.rky-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ===========================
   Stats Bar
   =========================== */
.rky-stats-section {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid var(--rky-border);
}

.rky-stat {
    text-align: center;
    padding: 16px 10px;
    border-left: 1px solid var(--rky-border);
}

.rky-stat:last-child {
    border-left: none;
}

.rky-stat-val {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.rky-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--main, #c9a84c);
}

.rky-stat-suf {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--main, #c9a84c);
}

.rky-stat p {
    font-size: 13px;
    color: var(--rky-muted);
}

/* ===========================
   Section Common
   =========================== */
.rky-section {
    padding: 90px 0;
}

.rky-section-alt {
    background: var(--rky-light-bg);
}

.rky-section-dark {
    background: linear-gradient(140deg, #14122a 0%, #080812 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rky-section-dark::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--main, #c9a84c);
    opacity: 0.04;
    right: -150px;
    top: -200px;
    filter: blur(60px);
    pointer-events: none;
}

.rky-section-dark::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--rky-purple);
    opacity: 0.06;
    left: -100px;
    bottom: -100px;
    filter: blur(60px);
    pointer-events: none;
}

.rky-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    color: var(--main, #c9a84c);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 100px;
    padding: 5px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.rky-label.light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.2);
}

/* About body description text */
.rky-about-body-text {
    font-size: 15px;
    color: var(--rky-muted);
    line-height: 1.9;
    margin-bottom: 32px;
}

.rky-heading {
    font-size: clamp(1.55rem, 2.8vw, 2.3rem);
    font-weight: 900;
    color: var(--rky-text);
    line-height: 1.3;
    margin-bottom: 16px;
}

.rky-heading.light { color: #fff; }

.rky-subtext {
    font-size: 15px;
    color: var(--rky-muted);
    line-height: 1.85;
    max-width: 520px;
}

.rky-subtext.light { color: rgba(255,255,255,0.85); }

.rky-section-hd { margin-bottom: 55px; }
.rky-section-hd.center { text-align: center; }
.rky-section-hd.center .rky-subtext { margin: 0 auto; }

/* ===========================
   About Section
   =========================== */
.rky-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 6px;
    transition: var(--rky-trans);
    cursor: default;
}

.rky-feature-row:hover {
    background: rgba(201,168,76,0.05);
    transform: translateX(-6px);
}

.rky-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--main, #c9a84c), var(--hover, #b8973a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(201,168,76,0.3);
    transition: transform 0.3s ease;
}

.rky-feature-row:hover .rky-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.rky-feature-body h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--rky-text);
    margin-bottom: 5px;
}

.rky-feature-body p {
    font-size: 13px;
    color: var(--rky-muted);
    line-height: 1.65;
}

/* Phone mockup (about) */
.rky-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.rky-phones::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--main, #c9a84c);
    opacity: 0.06;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.rky-phones img {
    max-width: 100%;
    border-radius: 26px;
    object-fit: cover;
}

.rky-phones img:first-of-type {
    width: 260px;
    position: relative;
    z-index: 3;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 40px rgba(201,168,76,0.12);
    animation: rkyFloat 7s ease-in-out infinite;
}

.rky-phones img:last-of-type {
    width: 210px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.88;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    animation: rkyFloat 9s ease-in-out infinite 2s;
}

/* ===========================
   Services Section
   =========================== */
.rky-service-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 26px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: var(--rky-trans);
    cursor: default;
}

.rky-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--main2);
    opacity: 0;
    transition: opacity 0.45s var(--rky-ease);
    z-index: 0;
}

.rky-service-card > * { position: relative; z-index: 1; }

.rky-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    border-color: var(--main, #c9a84c);
}

.rky-service-card:hover::after { opacity: 1; }

.rky-service-card:hover .rky-svc-title,
.rky-service-card:hover .rky-svc-desc { color: #fff !important; }

.rky-service-card:hover .rky-svc-icon { background: rgba(255,255,255,0.18); }

.rky-svc-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(201,168,76,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--rky-trans);
}

.rky-svc-icon img {
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: contain;
}

.rky-svc-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--rky-text);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.rky-svc-desc {
    font-size: 13px;
    color: var(--rky-muted);
    line-height: 1.75;
    transition: color 0.3s;
}

/* ===========================
   How It Works Section
   =========================== */
#how_work {
    overflow: hidden;
}

.rky-steps-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.rky-steps-track {
    --rky-step-img-size: clamp(72px, 9vw, 100px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(10px, 2.5vw, 24px);
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 0 8px;
}

.rky-steps-track::before {
    content: '';
    position: absolute;
    top: calc(var(--rky-step-img-size) / 2 + 14px);
    right: 6%;
    left: 6%;
    height: 2px;
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.35), transparent);
    z-index: 0;
    pointer-events: none;
}

.rky-step {
    flex: 1 1 0;
    min-width: 0;
    max-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rky-step-num {
    position: absolute;
    top: -6px;
    right: 50%;
    transform: translateX(50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--main2);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.rky-step-img {
    width: var(--rky-step-img-size);
    height: var(--rky-step-img-size);
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 3px solid rgba(201,168,76,0.4);
    box-shadow: 0 0 0 5px rgba(201,168,76,0.07);
    transition: var(--rky-trans);
}

.rky-step-img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.rky-step:hover .rky-step-img {
    border-color: var(--main, #c9a84c);
    box-shadow: 0 0 0 10px rgba(201,168,76,0.12), 0 12px 30px rgba(201,168,76,0.25);
}

.rky-step:hover .rky-step-img img {
    transform: scale(1.08);
}

.rky-step-label {
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 600;
    color: var(--rky-text);
    line-height: 1.45;
    padding: 0 4px;
    word-break: break-word;
    hyphens: auto;
}

/* ===========================
   Download App Section
   =========================== */
.rky-download {
    padding: 90px 0;
    background: linear-gradient(140deg, #14122a 0%, #080812 100%);
    position: relative;
    overflow: hidden;
}

.rky-download::before,
.rky-download::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.rky-download::before {
    width: 550px; height: 550px;
    background: var(--main, #c9a84c);
    opacity: 0.06;
    right: -150px; top: -200px;
}

.rky-download::after {
    width: 400px; height: 400px;
    background: var(--rky-purple);
    opacity: 0.08;
    left: -100px; bottom: -100px;
}

.rky-download-inner {
    position: relative;
    z-index: 1;
}

.rky-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.rky-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 13px 22px;
    color: #fff;
    text-decoration: none;
    transition: var(--rky-trans);
    backdrop-filter: blur(12px);
    min-width: 165px;
}

.rky-badge-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--main, #c9a84c);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.rky-badge-btn i {
    font-size: 26px;
    color: var(--main, #c9a84c);
}

.rky-badge-btn-info small {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2px;
}

.rky-badge-btn-info span {
    font-size: 15px;
    font-weight: 700;
    display: block;
}

.rky-dl-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rky-dl-phone img {
    width: 240px;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 50px rgba(201,168,76,0.15);
    animation: rkyFloat 6s ease-in-out infinite;
}

/* ===========================
   FAQ Section
   =========================== */
.rky-faq-tabs {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px !important;
}

.rky-faq-tabs .nav-link {
    background: #f0ecff !important;
    color: var(--rky-muted) !important;
    border: 1.5px solid transparent !important;
    font-weight: 500;
    font-size: 14px;
    transition: var(--rky-trans) !important;
    border-radius: 12px !important;
}

.rky-faq-tabs .nav-link.active {
    background: var(--main2) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.rky-faq-tabs .nav-link:hover:not(.active) {
    border-color: var(--main, #c9a84c) !important;
    color: var(--main, #c9a84c) !important;
}

.rky-accordion .card {
    border: 1.5px solid rgba(0,0,0,0.06) !important;
    border-radius: 16px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04) !important;
    overflow: hidden;
    transition: var(--rky-trans);
}

.rky-accordion .card:hover {
    border-color: rgba(201,168,76,0.3) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.07) !important;
}

.rky-accordion .card-header {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.rky-accordion .card-header button {
    font-size: 15px;
    font-weight: 600;
    color: var(--rky-text);
    padding: 20px 22px !important;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rky-accordion .card-header button::after {
    content: '+';
    font-size: 20px;
    color: var(--main, #c9a84c);
    font-weight: 700;
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.rky-accordion .card-header button[aria-expanded="true"] {
    color: var(--main, #c9a84c) !important;
}

.rky-accordion .card-header button[aria-expanded="true"]::after {
    content: '−';
    transform: rotate(180deg);
}

.rky-accordion .card-body {
    padding: 0 22px 20px !important;
    font-size: 14px;
    color: var(--rky-muted);
    line-height: 1.85;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 16px !important;
}

/* ===========================
   Partners Section
   =========================== */
.rky-partners {
    padding: 60px 0;
    background: #f8f6ff;
}

.owl-brands .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.owl-brands .item img {
    max-height: 60px !important;
    max-width: 140px;
    width: auto !important;
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.4s ease;
    margin: auto;
}

.owl-brands .item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* ===========================
   Contact Section
   =========================== */
.rky-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 16px;
    border: 1px solid var(--rky-border);
    box-shadow: var(--rky-shadow);
    transition: var(--rky-trans);
}

.rky-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rky-shadow-lg);
    border-color: rgba(201,168,76,0.3);
}

.rky-contact-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main, #c9a84c), var(--hover, #b8973a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(201,168,76,0.3);
}

.rky-contact-body small {
    display: block;
    font-size: 12px;
    color: var(--rky-muted);
    margin-bottom: 3px;
}

.rky-contact-body a,
.rky-contact-body span {
    font-size: 14px;
    font-weight: 700;
    color: var(--rky-text);
    transition: color 0.3s;
}

.rky-contact-body a:hover { color: var(--main, #c9a84c); }

/* Contact form card */
.rky-form-wrap {
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--rky-border);
}

.rky-field {
    position: relative;
    margin-bottom: 20px;
}

.rky-field input,
.rky-field textarea {
    width: 100%;
    background: var(--rky-light-bg);
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 14px 18px;
    font-family: "myFont", sans-serif;
    font-size: 14px;
    color: var(--rky-text);
    transition: var(--rky-trans);
    outline: none;
    display: block;
}

.rky-field input:focus,
.rky-field textarea:focus {
    border-color: var(--main, #c9a84c);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.08);
}

.rky-field textarea {
    height: 130px;
    resize: none;
}

.rky-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--main2);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: "myFont", sans-serif;
    cursor: pointer;
    transition: var(--rky-trans);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rky-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}

/* ===========================
   Footer Redesign
   =========================== */
footer {
    background: #080812 !important;
    color: #e5e7eb;
    padding-top: 70px;
}

.rky-footer-about img {
    max-width: 100px;
    margin-bottom: 20px;
    opacity: 0.88;
}

.rky-footer-about p {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    max-width: 220px;
    margin-bottom: 28px;
}

.rky-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rky-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.78);
    transition: var(--rky-trans);
}

.rky-social-row a:hover {
    background: var(--main2);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.rky-footer-h {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 14px;
    position: relative;
}

.rky-footer-h::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: var(--main2);
    border-radius: 2px;
}

.rky-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rky-footer-links li { margin-bottom: 12px; }

.rky-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--rky-trans);
}

.rky-footer-links a:hover {
    color: var(--main, #c9a84c);
    transform: translateX(-5px);
}

.rky-footer-links a i {
    font-size: 10px;
    color: var(--main, #c9a84c);
    opacity: 0;
    transition: opacity 0.3s;
}

.rky-footer-links a:hover i { opacity: 1; }

.rky-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rky-footer-contact-item .rky-fci2 {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--main, #c9a84c);
    flex-shrink: 0;
}

.rky-footer-contact-item a,
.rky-footer-contact-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}

.rky-footer-contact-item a:hover { color: var(--main, #c9a84c); }

/* Footer bottom bar */
.rky-footer-bar {
    margin-top: 55px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rky-footer-bar p,
.rky-footer-bar a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.rky-footer-bar a:hover { color: var(--main, #c9a84c); }

/* Loader */
.loader { background: #080812 !important; }

.loader img {
    filter: drop-shadow(0 0 25px rgba(201,168,76,0.5));
}

/* ===========================
   Scroll-triggered Reveal
   =========================== */
.rky-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.75s var(--rky-ease), transform 0.75s var(--rky-ease);
}

.rky-reveal.rky-visible {
    opacity: 1;
    transform: translateY(0);
}

.rky-reveal-r {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.75s var(--rky-ease), transform 0.75s var(--rky-ease);
}

.rky-reveal-r.rky-visible {
    opacity: 1;
    transform: translateX(0);
}

.rky-reveal-l {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.75s var(--rky-ease), transform 0.75s var(--rky-ease);
}

.rky-reveal-l.rky-visible {
    opacity: 1;
    transform: translateX(0);
}

.rky-reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.75s var(--rky-ease), transform 0.75s var(--rky-ease);
}

.rky-reveal-scale.rky-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.rky-d1 { transition-delay: 0.08s; }
.rky-d2 { transition-delay: 0.18s; }
.rky-d3 { transition-delay: 0.28s; }
.rky-d4 { transition-delay: 0.38s; }
.rky-d5 { transition-delay: 0.48s; }
.rky-d6 { transition-delay: 0.58s; }

/* ===========================
   Animation Keyframes
   =========================== */
@keyframes rkyFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-22px); }
}

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

@keyframes rkyBlob1 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(40px,-40px) scale(1.12); }
    66%       { transform: translate(-25px,25px) scale(0.88); }
}

@keyframes rkyBlob2 {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(-35px,35px) scale(1.1); }
    66%       { transform: translate(25px,-25px) scale(0.9); }
}

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

@keyframes rkySpark {
    0%, 100% { opacity: 0.25; transform: scale(0.7) rotate(0deg); }
    50%       { opacity: 1;    transform: scale(1.3) rotate(180deg); }
}

@keyframes rkyPulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
    50%       { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 0 6px transparent; }
}

@keyframes rkyFadeUp {
    from { opacity: 0; transform: translateY(35px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes rkyFadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes rkyGradShift {
    0%   { background-position: 0% center; }
    50%  { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@keyframes rkyCountUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Owl Carousel — Hero Override
   =========================== */
.rky-hero-owl {
    position: relative;
    z-index: 5;
    width: 100%;
}

.rky-hero-owl .owl-stage-outer,
.rky-hero-owl .owl-stage {
    height: 100%;
}

.rky-hero-owl .owl-item {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.rky-hero-owl .item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.rky-hero-owl .owl-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.rky-hero-owl .owl-nav {
    display: none;
}

/* old .info_owl styles shouldn't apply since we changed markup */
.rky-hero-owl .info_owl { display: none !important; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991px) {
    .rky-float-card { display: none; }
    .rky-steps-track::before { display: none; }
}

@media (max-width: 767px) {
    .rky-hero-inner {
        padding: 100px 0 60px;
        text-align: center;
    }

    .rky-platform-pills, .rky-hero-btns { justify-content: center; }
    .rky-hero-desc { margin: 0 auto 28px; }
    .rky-hero-visual { margin-top: 36px; }
    .rky-phone-wrap { width: 200px; }

    .rky-stat {
        border-left: none;
        border-bottom: 1px solid var(--rky-border);
    }

    .rky-stat:last-child { border-bottom: none; }

    .rky-section { padding: 55px 0; }
    .rky-form-wrap { padding: 26px; }

    .rky-badges, .rky-download .row { text-align: center; }
    .rky-badges { justify-content: center; }
    .rky-dl-phone { margin-top: 36px; }

    .rky-phones { min-height: 380px; }
    .rky-phones img:first-of-type { width: 200px; }
    .rky-phones img:last-of-type { width: 160px; }

    .rky-steps-track {
        --rky-step-img-size: 80px;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
    }
    .rky-step {
        flex: 0 1 calc(50% - 12px);
        min-width: 0;
        max-width: 160px;
    }
}

@media (max-width: 575px) {
    .rky-stat-num { font-size: 1.8rem; }
}

/* ============================================================
   DARK THEME — matches footerMobile (#0a0816)
   ============================================================ */

.rky-section { background: var(--rky-bg); }
.rky-section-alt { background: var(--rky-surface-2); }
.rky-stats-section { background: var(--rky-bg); border-color: var(--rky-border); }
.rky-stat p { color: var(--rky-muted); }

.rky-service-card {
    background: var(--rky-surface-3);
    border-color: var(--rky-border);
}
.rky-svc-title { color: var(--rky-text); }
.rky-svc-desc { color: var(--rky-muted); }

.rky-contact-card {
    background: var(--rky-surface-3);
    border-color: var(--rky-border);
}
.rky-contact-body small { color: var(--rky-muted); }
.rky-contact-body a,
.rky-contact-body span { color: var(--rky-text); }

.rky-accordion .card {
    background: var(--rky-surface-3) !important;
    border-color: var(--rky-border) !important;
}
.rky-accordion .card-header { background: transparent !important; }
.rky-accordion .card-header button { color: var(--rky-text); }
.rky-accordion .card-body { color: var(--rky-muted); border-top-color: var(--rky-border); }

.rky-form-wrap {
    background: var(--rky-surface-3);
    border-color: var(--rky-border);
}
.rky-field input,
.rky-field textarea {
    background: var(--rky-surface-2);
    border-color: var(--rky-border);
    color: var(--rky-text);
}
.rky-field input::placeholder,
.rky-field textarea::placeholder { color: #6b7280; }
.rky-field input:focus,
.rky-field textarea:focus {
    background: var(--rky-surface);
    border-color: var(--main, #c9a84c);
}

.rky-partners { background: var(--rky-surface-2); }

.rky-feature-body h6 { color: var(--rky-text); }
.rky-feature-body p { color: var(--rky-muted); }
.rky-feature-row:hover { background: rgba(255,255,255,0.04); }
.rky-step-label { color: var(--rky-text); }

.rky-faq-tabs .nav-link {
    background: var(--rky-surface-3) !important;
    color: var(--rky-muted) !important;
    border-color: var(--rky-border) !important;
}
.rky-faq-tabs .nav-link:hover:not(.active) {
    color: var(--main, #c9a84c) !important;
    border-color: rgba(201,168,76,0.35) !important;
}

/* Mobile: hide slide-out nav (bottom bar only) */
@media (max-width: 991.98px) {
    .nav_bar {
        display: none !important;
    }
}

/* ============================================================
   FULL RESPONSIVE — Tablets & All Mobiles
   ============================================================ */

/* ── Large tablets (≤ 1024px) ── */
@media (max-width: 1024px) {
    .rky-hero-title { font-size: 2.8rem; }
    .rky-phone-wrap { width: 230px; }
    .rky-float-card { display: none; }
}

/* ── Tablets (≤ 991px) ── */
@media (max-width: 991.98px) {

    /* Add bottom padding to body for mobile nav bar */
    body { padding-bottom: 68px; }

    /* Hero */
    .rky-hero-inner {
        padding: 95px 0 55px;
        text-align: center;
    }
    .rky-hero-tag { margin: 0 auto 20px; }
    .rky-hero-desc { margin: 0 auto 26px; max-width: 100%; }
    .rky-platform-pills { justify-content: center; }
    .rky-hero-btns { justify-content: center; }

    /* About - reverse order on tablet: text first */
    .rky-phones img:first-of-type { width: 230px; }
    .rky-phones img:last-of-type  { width: 185px; }
    .rky-phones { min-height: 440px; }

    /* Stats */
    .rky-stat { border-left: none; }

    /* Steps */
    .rky-steps-track {
        --rky-step-img-size: 88px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 16px;
        overflow: hidden;
    }
    .rky-steps-track::before { display: none; }
    .rky-step {
        flex: 0 1 calc(50% - 16px);
        min-width: 0;
        max-width: 160px;
    }

    /* Download */
    .rky-download-inner .row { text-align: center; }
    .rky-badges { justify-content: center; }
    .rky-dl-phone { margin-top: 30px; }

    /* Contact */
    .rky-contact-card { padding: 18px; }

    /* Sections spacing */
    .rky-section { padding: 60px 0; }
    .rky-section-hd { margin-bottom: 40px; }
}

/* ── Mobile landscape + small tablets (≤ 767px) ── */
@media (max-width: 767px) {

    /* Hero */
    .rky-hero-inner { padding: 90px 0 50px; }
    .rky-hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .rky-hero-desc { font-size: 14px; margin-bottom: 22px; }

    /* Show phone on mobile below text */
    .rky-hero-visual {
        display: flex !important;
        margin-top: 30px;
        justify-content: center;
    }
    .rky-phone-wrap { width: 190px; }

    /* Stats 2×2 grid */
    .rky-stats-section .row { margin: 0; }
    .rky-stat {
        border-bottom: 1px solid var(--rky-border);
        border-left: none !important;
        padding: 18px 10px;
    }
    .rky-stat:nth-child(odd)  { border-right: 1px solid var(--rky-border); }
    .rky-stat:nth-child(3),
    .rky-stat:nth-child(4)    { border-bottom: none; }
    .rky-stat-num { font-size: 2rem; }

    /* About */
    .rky-phones { min-height: 320px; }
    .rky-phones img:first-of-type { width: 180px; }
    .rky-phones img:last-of-type  { width: 148px; }
    .rky-feature-row { padding: 12px 10px; gap: 14px; }
    .rky-feature-icon { width: 44px; height: 44px; font-size: 18px; }
    .rky-feature-body h6 { font-size: 14px; }
    .rky-feature-body p  { font-size: 12px; }

    /* Services */
    .rky-service-card { padding: 26px 20px; margin-bottom: 4px; }
    .rky-svc-icon { width: 56px; height: 56px; }

    /* How it works */
    .rky-steps-track { --rky-step-img-size: 80px; }
    .rky-step { flex: 0 1 calc(50% - 12px); max-width: 150px; }

    /* Download */
    .rky-download { padding: 60px 0; }
    .rky-badge-btn { min-width: 150px; padding: 11px 16px; }
    .rky-dl-phone img { width: 190px; }

    /* FAQ tabs wrap nicely */
    .rky-faq-tabs .nav-link {
        width: auto !important;
        padding: 8px 14px !important;
        height: auto !important;
        line-height: 1.4 !important;
        font-size: 13px;
    }

    /* Contact */
    .rky-form-wrap { padding: 22px 18px; }
    .rky-contact-card { gap: 14px; }
    .rky-contact-ico { width: 44px; height: 44px; font-size: 17px; }

    /* Sections */
    .rky-section { padding: 50px 0; }
    .rky-heading { font-size: clamp(1.4rem, 5vw, 2rem); }
    .rky-subtext { font-size: 14px; }
    .rky-section-hd { margin-bottom: 32px; }

    /* Footer */
    footer { padding-top: 45px; }
    .rky-footer-bar {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}

/* ── Small mobile (≤ 575px) ── */
@media (max-width: 575px) {

    /* Hero */
    .rky-hero-inner { padding: 85px 0 45px; }
    .rky-hero-title { font-size: clamp(1.55rem, 6.5vw, 2.2rem); }
    .rky-platform-pills { gap: 7px; }
    .rky-pill { font-size: 11px; padding: 5px 11px; }
    .rky-hero-btns { gap: 10px; }
    .rky-btn-primary, .rky-btn-ghost { padding: 12px 20px; font-size: 14px; }
    .rky-phone-wrap { width: 160px; }

    /* Stats */
    .rky-stat-num { font-size: 1.7rem; }
    .rky-stat-suf { font-size: 1.2rem; }
    .rky-stat p   { font-size: 11px; }

    /* Steps */
    .rky-steps-track {
        --rky-step-img-size: 72px;
        gap: 16px 10px;
    }
    .rky-step { flex: 0 1 calc(50% - 10px); max-width: 140px; }
    .rky-step-label { font-size: 11px; }

    /* Download badges stacked */
    .rky-badges { flex-direction: column; align-items: center; }
    .rky-badge-btn { width: 200px; justify-content: center; }

    /* FAQ accordion */
    .rky-accordion .card-header button { font-size: 13px; padding: 15px 14px !important; }
    .rky-accordion .card-body { font-size: 13px; padding: 0 14px 15px !important; }

    /* Contact form */
    .rky-form-wrap { padding: 18px 14px; border-radius: 18px; }
    .rky-field input,
    .rky-field textarea { padding: 12px 14px; font-size: 13px; }
    .rky-form-submit { font-size: 14px; padding: 14px; }

    /* Footer */
    .rky-footer-about p { font-size: 12px; }
    .rky-footer-links a { font-size: 12px; }
    .rky-footer-contact-item a,
    .rky-footer-contact-item span { font-size: 12px; }
}

/* ── Extra small (≤ 400px) ── */
@media (max-width: 400px) {
    .rky-hero-title   { font-size: 1.45rem; }
    .rky-phone-wrap   { width: 140px; }
    .rky-steps-track { --rky-step-img-size: 64px; }
    .rky-step         { flex: 0 1 calc(50% - 8px); max-width: 120px; }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR
   ============================================================ */
#rky-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(10, 8, 22, 0.97);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 9980;
    box-shadow: 0 -6px 30px rgba(0,0,0,0.4);
    padding: 0 4px;
}

.rky-mob-inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    height: 100%;
}

.rky-mob-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    text-decoration: none !important;
    color: rgba(255,255,255,0.4);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0 2px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* Active indicator — top bar */
.rky-mob-tab.rky-mob-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2.5px;
    background: var(--main, #c9a84c);
    border-radius: 0 0 4px 4px;
    animation: rkyFadeUp 0.3s ease;
}

.rky-mob-tab.rky-mob-active {
    color: var(--main, #c9a84c) !important;
}

.rky-mob-tab:hover:not(.rky-mob-active) {
    color: rgba(255,255,255,0.7);
}

.rky-mob-tab i {
    font-size: 17px;
    display: block;
    transition: transform 0.25s ease;
    line-height: 1;
}

.rky-mob-tab.rky-mob-active i {
    transform: scale(1.18) translateY(-1px);
}

.rky-mob-tab span {
    font-size: 9.5px;
    font-family: "myFont", sans-serif;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    max-width: 52px;
    text-overflow: ellipsis;
}

/* Ripple on tap */
.rky-mob-tab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: rgba(201,168,76,0.08);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.rky-mob-tab:active::after { opacity: 1; }

/* Show on mobile/tablet */
@media (max-width: 991.98px) {
    #rky-mobile-nav { display: block; }
}

/* Dark scrollbar */
::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: var(--rky-surface-2) !important;
}
::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2) !important;
}

@media (prefers-reduced-motion: reduce) {
    .rky-blob,
    .rky-shape,
    .rky-hero-section::before {
        animation: none !important;
    }

    .rky-reveal,
    .rky-reveal-r,
    .rky-reveal-l,
    .rky-reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Landscape phone — slightly shorter bar */
@media (max-width: 767px) and (orientation: landscape) {
    #rky-mobile-nav { height: 52px; }
    body { padding-bottom: 52px; }
    .rky-mob-tab i { font-size: 15px; }
    .rky-mob-tab span { font-size: 8.5px; }
}

