:root {
    /* Brand Colors */
    --color-primary: #ed751f;
    --color-secondary: #e3ab23;
    --color-dark: #000000;
    --color-dark-light: #0a0a0a;
    --color-dark-card: #111111;
    --color-dark-elevated: #1a1a1a;
    --color-white: #ffffff;
    --color-text-light: #e0e0e0;
    --color-text-muted: #bcbcbc;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ed751f 0%, #e3ab23 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(237, 117, 31, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Loader */
.loader-container {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 99999;
    position: fixed;
}

.loader-container p {
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) {
    animation: hover 1s linear infinite;
}

.loader-container p:nth-child(2) {
    animation: hover 1s linear infinite 0.125s;
}

.loader-container p:nth-child(3) {
    animation: hover 1s linear infinite 0.25s;
}

.loader-container p:nth-child(4) {
    animation: hover 1s linear infinite 0.375s;
}

.loader-container p:nth-child(5) {
    animation: hover 1s linear infinite 0.5s;
}

.loader-container p:nth-child(6) {
    animation: hover 1s linear infinite 0.675s;
}

.loader-container p:nth-child(7) {
    animation: hover 1s linear infinite 0.75s;
}

.loader-container p:nth-child(8) {
    animation: hover 1s linear infinite 0.875s;
}

.loader-container p:nth-child(9) {
    animation: hover 1s linear infinite 1s;
}

.loader-container p:nth-child(10) {
    animation: hover 1s linear infinite 1.125s;
}

.loader-container p:nth-child(11) {
    animation: hover 1s linear infinite 1.25s;
}

.loader-container p:nth-child(12) {
    animation: hover 1s linear infinite 1.375s;
}

.loader-container p:nth-child(13) {
    animation: hover 1s linear infinite 1.5s;
}

.loader-container p:nth-child(14) {
    animation: hover 1s linear infinite 1.625s;
}

@keyframes hover {
    0% {
        transform: scale(0.5);
        color: #121212;
        -webkit-text-stroke: 2px rgb(0, 0, 0);
    }

    20% {
        transform: scale(1);
        color: var(--color-primary);
        -webkit-text-stroke: 2px var(--color-primary);
        filter: none;
    }

    50% {
        transform: scale(0.5);
        color: var(--color-white);
        -webkit-text-stroke: 2px white;
    }
}

/* Fade Animations */
.reveal {
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

.active.fade0 {
    animation: fade0 1.2s ease-in-out;
}

.active.fade1 {
    animation: fade1 1.8s ease-in-out;
}

.active.fade2 {
    animation: fade2 1.8s ease-in-out;
}

.active.fade3 {
    animation: fade3 1.4s ease-in-out;
}

@keyframes fade0 {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade1 {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade2 {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade3 {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    z-index: 9999;
    color: white;
}

.header:hover {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(237, 117, 31, 0.2);
}

.header .left img {
    cursor: pointer;
    height: 130px;
    transition: transform var(--transition-base);
}

.header .left img:hover {
    transform: scale(1.05);
}

.header .right ul {
    display: flex;
    list-style: none;
}

.header .right ul li {
    padding: 40px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

#service-dropdown {
    position: relative;
}

#service-menu {
    display: none;
    position: absolute;
    top: 95px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

#service-dropdown:hover #service-menu {
    display: block;
    z-index: 998;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#service-menu li {
    display: block;
    width: 250px;
    padding: 12px 20px;
    transition: all var(--transition-fast);
}

#service-menu li:hover {
    background: rgba(237, 117, 31, 0.1);
    padding-left: 30px;
}

#service-menu li a {
    color: var(--color-text-light);
    font-weight: 500;
}

#service-menu li a:hover {
    color: var(--color-primary);
}

.header .right ul li a {
    text-decoration: none;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.header .right ul li a:hover,
.header .right ul li p:hover {
    text-decoration: none;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(237, 117, 31, 0.3);
}

.header #menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 60px;
    background: var(--color-dark);
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.benefits-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(237, 117, 31, 0.3);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(237, 117, 31, 0.1);
    border: 2px solid rgba(237, 117, 31, 0.3);
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    background: rgba(237, 117, 31, 0.2);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 100px 60px;
    background: var(--color-dark-light);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.process-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Technologies Section */
.tech-section {
    padding: 100px 60px;
    background: var(--color-dark);
}

.tech-header {
    text-align: center;
    margin-bottom: 80px;
}

.tech-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.tech-header p {
    font-size: 18px;
    color: var(--color-text-muted);
}

.tech-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 117, 31, 0.3);
    box-shadow: var(--shadow-lg);
}

.tech-item i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.tech-item p {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 60px;
    background: var(--color-dark-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(237, 117, 31, 0.5);
}

/* Footer */
.footer {
    padding: 30px 10px 0px 10px;
    z-index: 999;
    color: #2f2f2f;
    background-color: #202020;
    border-top: 1px solid #000000;
    width: 100%;
    margin: 0;
}

.footer_nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.nav_con {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.nav_con img {
    width: 180px;
    cursor: pointer;
}

.nav_con h2 {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.nav_ul.extra {
    column-count: 2;
    column-gap: 40px;
}

.nav_item {
    margin-top: 20px;
}

.nav_item h2 {
    font-weight: 400;
    font-size: 26px;
    color: white;
}

.nav_con a {
    color: #e3ab23;
    margin: 5px 0;
    text-decoration: none;
}

.footer p {
    margin: 10px 0;
    font-style: normal;
    color: #dcdcdc;
}

.footer .nav_item a {
    margin: 10px 0;
    color: #efefef;
    text-decoration: none;
}

.footer .nav_item a:hover {
    margin: 10px 0;
    color: #ed751f;
}

.footer ul {
    margin-top: 30px;
    list-style: none;
}

.footer ul li {
    margin: 10px 0;
}

.legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.legal p {
    color: #bcbcbc;
    font-size: 14px;
}

.links {
    display: flex;
    gap: 20px;
}

.links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.links i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .benefits-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .header .right ul {
        display: none;
    }

    .header #menu-icon {
        display: block;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .benefits-section,
    .process-section,
    .tech-section,
    .cta-section {
        padding: 80px 30px;
    }

    .benefits-header h2,
    .process-header h2,
    .tech-header h2,
    .cta-content h2 {
        font-size: 36px;
    }

    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .legal {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav_con {
        width: 100%;
    }
}