:root {
    --primary-bg: #050505;
    --secondary-bg: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.7);
    --accent: #ff6b00;
    --accent-glow: rgba(255, 107, 0, 0.4);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.accent {
    color: var(--accent);
    background: linear-gradient(90deg, var(--accent), #ffcc00, var(--accent));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
    transition: padding 0.3s ease;
}

.header.scrolled {
    padding: 1rem 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

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

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

.lang-selector select {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    border-radius: 5px;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    outline: none;
}

.lang-selector select option {
    background: var(--primary-bg);
}

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

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ff4d00;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0 10%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.9;
}

.orb,
.grid-overlay {
    display: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }

    100% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    background: linear-gradient(120deg, #ffffff 0%, #565656 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #888;
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: #ff4d00;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #ff5e1a;
    box-shadow: 0 15px 30px rgba(255, 77, 0, 0.3);
}

/* Marquee Banner */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 3rem 0;
    background: rgba(5, 5, 5, 0.6);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.marquee-content span:hover {
    opacity: 1;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--accent-glow);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* Conversion Section */
.conversion {
    padding: 8rem 5%;
    background-color: var(--primary-bg);
    position: relative;
}

.conversion-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.conversion-text {
    flex: 1;
    max-width: 500px;
}

.conversion-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.conversion-desc {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.conversion-divider {
    margin-bottom: 3rem;
    width: 300px;
}

.conversion-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-container {
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.9) 0%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

@media (max-width: 968px) {
    .conversion {
        padding: 4rem 5%;
    }

    .conversion-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .conversion-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conversion-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .conversion-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .conversion-divider {
        margin: 0 auto 2.5rem;
        width: 100%;
        max-width: 250px;
    }

    .lottie-container {
        height: 250px;
        width: 100%;
        border-radius: 15px;
    }

    .conversion-visual {
        width: 100%;
    }
}

/* Services Section */
.services {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 rgba(255, 107, 0, 0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.15), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15), inset 0 0 20px rgba(255, 107, 0, 0.05);
}

.service-card:hover::before {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), transparent);
    border: 1px solid var(--accent);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-placeholder::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-glow);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feature Sections - Split Layout */
.feature-intro {
    text-align: center;
    padding: 2rem 5% 1rem;
}

.feature-intro h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

.feature-section {
    padding: 3rem 5%;
    position: relative;
    background-color: transparent;
}

.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-heading-block,
.split-card-block {
    flex: 1;
}

.split-large-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(180deg, #ffffff 0%, #4c4b4b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glowing-card {
    background: rgba(44, 44, 68, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glowing-card:hover {
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.15);
    border-color: rgba(255, 69, 0, 0.3);
    transform: translateY(-5px);
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.card-subtitle {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.card-desc {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-orange {
    display: inline-block;
    padding: 12px 32px;
    background: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-orange:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.feature-header-centered {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-subtitle-centered {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

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

.mt-4 {
    margin-top: 4rem;
}

.lottie-flex {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
    font-size: 1.1rem;
    font-weight: 500;
}

.trust-icon {
    width: 30px;
    height: 30px;
    color: white;
}

.pr-banner {
    max-width: 1200px;
    margin: 6rem auto 2rem;
    padding: 2rem 3rem;
    background: rgba(10, 10, 15, 0.4);
    border: 1px solid rgba(141, 141, 141, 0.497);
    border-radius: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: default;
    box-shadow: 0 0 30px rgba(250, 250, 250, 0.398);
}

.pr-banner h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 350;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(180deg, #b1b0b0 0%, #393838 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pr-banner:hover {
    box-shadow: 0 0 40px rgba(251, 72, 7, 0.621);
    border-color: rgba(255, 69, 0, 0.4);
    transform: translateY(-1px);
}

/* ORM Section */
.orm {
    padding: 8rem 5%;
    position: relative;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230a0a0a"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-attachment: fixed;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.orm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);
    z-index: 0;
}

.orm-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.orm-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.orm-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 400;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
}

.orm-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.orm-features {
    list-style: none;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.orm-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.check {
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    background-color: var(--primary-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-links p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 10px 25px var(--accent-glow);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: bounce 2s infinite ease-in-out;
}

.floating-btn svg {
    width: 30px;
    height: 30px;
}

.floating-btn:hover {
    transform: scale(1.1);
    background: #ff2a00;
    animation-play-state: paused;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Connect Section */
.connect-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 69, 0, 0.03));
    border-top: 1px solid var(--glass-border);
}

.connect-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.connect-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.connect-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.connect-btn-tg {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff4d00;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

.connect-btn-tg:hover {
    transform: translateY(-2px);
    background: #ff5e1a;
    box-shadow: 0 15px 30px rgba(255, 77, 0, 0.3);
}

.connect-email {
    font-size: 1.1rem;
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 5px;
    transition: color 0.3s ease;
}

.connect-email:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .split-heading-block,
    .split-card-block {
        width: 100%;
        max-width: 100%;
    }

    .feature-trust-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }


    .service-card,
    .service-row,
    .about-row {
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .lang-selector {
        display: none;
        /* Can be moved inside nav-links for mobile */
    }

    .stat-item {
        flex: 1 1 100%;
    }
}