@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&family=Libre+Baskerville:wght@400;600;900&family=Caveat:wght@400;600;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
:root {
    --color-primary: #27AE60;
    --color-secondary: #05DF72;
    --color-glow: rgb(5, 61, 118, 0.12);
    --color-glow-2: rgb(5, 61, 118, 0.3);
    --color-background: rgb(9, 12, 17);
    --color-border: rgba(247, 247, 248, 0.15);
    --color-btn-dark: rgb(14, 16, 21);
    --color-btn-light: rgb(24, 29, 38);
    --color-text-extra-dark: rgb(97, 101, 107);
    --color-text-dark: rgb(140, 141, 143);
    --color-text-hover: rgb(203, 203, 204);
    --color-text-light: rgb(252, 252, 252);
    --color-linear-1: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    --color-linear-2: linear-gradient(0deg, var(--color-secondary) 20%, var(--color-primary) 100%);
    --color-linear-3: linear-gradient(90deg, var(--color-text-light) 0%, var(--color-text-dark) 100%);
    --color-linear-4: linear-gradient(90deg, var(--color-text-dark) 0%, var(--color-text-light) 100%);
    --color-linear-5: linear-gradient(90deg, var(--color-text-light) 0%, var(--color-text-primary) 100%);
    --color-normal: rgb(173, 173, 173);
    --color-success: rgb(26, 136, 66);
    --color-success-light: rgb(32, 173, 84, 0.12);
    --color-warning: rgb(231, 187, 64);
    --color-warning-light: rgb(231, 187, 64, 0.12);
    --color-error: rgb(255, 77, 77);
    --color-error-light: rgb(255, 77, 77, 0.1);
    --font-weight-normal: 400;
    --font-weight-bold: 600;
    --font-weight-black: 900;
    --font-family-1: "Inter", sans-serif;
    --font-family-2: "Libre Baskerville", sans-serif;
    --font-family-3: "Caveat", cursive;
    --as-seen-on-slide-count: 11;
    --as-seen-on-slide-duration: 44s;
    --as-seen-on-slide-height: auto;
    --as-seen-on-slide-width: 17rem;
    --careers-slide-count: 24;
    --careers-slide-duration: 48s;
    --careers-slide-height: auto;
    --careers-slide-width: 10rem;
    --height-header: 6rem;
    --width-container: 1280px;
}

@property --start-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #00c950;
}

@property --end-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #05df72;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    scroll-padding-top: var(--height-header);
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

img,
svg {
    user-select: none;
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    font-family: var(--font-family-1);
    font-weight: var(--font-weight-normal);
    font-size: 10px;
    user-select: none;
}

body {
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--color-background);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-2);
    font-weight: var(--font-weight-bold);
    font-size: 4.8rem;
    line-height: 1.2;
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-h1,
.title-h2,
.title-h3,
.title-h4,
.title-h5,
.title-h6 {
    font-family: var(--font-family-1);
    font-weight: var(--font-weight-bold);
    font-size: 4.8rem;
    line-height: 1.2;
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2,
.title-h2 {
    font-size: 4.8rem;
    line-height: 1.2;
}
h3,
.title-h3 {
    font-size: 3.2rem;
    line-height: 1.5;
}
h4,
.title-h4 {
    font-size: 2.4rem;
    line-height: 1.5;
}
h5,
.title-h5 {
    font-size: 2rem;
    line-height: 1.5;
}
h6,
.title-h6 {
    font-size: 1.8rem;
    line-height: 1.5;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.title-h1 span,
.title-h2 span,
.title-h3 span,
.title-h4 span,
.title-h5 span,
.title-h6 span {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p,
a,
ul,
ol,
li,
label,
input,
textarea,
select,
option,
button,
.btn {
    color: var(--color-text-hover);
    font-family: var(--font-family-1);
    font-weight: var(--font-weight-normal);
    font-size: 1.6rem;
    line-height: 1.5;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.tooltip-term {
    border-bottom: 1px dotted var(--color-secondary);
    cursor: help;
    text-decoration: none;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    width: auto;
    border: none;
    outline: none;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
    white-space: nowrap;
    overflow: hidden;
}
.btn-s {
    padding: 0.6rem 1rem;
    font-size: 1.4rem;
    border-radius: 6px;
}
.btn-primary {
    --start-color: #00c950;
    --end-color: #05df72;
    background: linear-gradient(90deg, var(--start-color) 0%, var(--end-color) 100%);
    color: #fff;
}
.btn-primary:hover {
    --start-color: #00b84a;
    --end-color: #04c65f;
}
.btn-secondary {
    background-color: var(--color-border);
    color: var(--color-text-light);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.btn-dark {
    background-color: var(--color-btn-light);
    border: 1px solid var(--color-border);
    color: var(--color-text-hover);
}
.btn-dark:hover {
    border: 1px solid var(--color-text-dark);
    color: var(--color-text-light);
}
.header .btn-header {
    --start-color: #00c950;
    --end-color: #05df72;
    background: linear-gradient(90deg, var(--start-color) 0%, var(--end-color) 100%);
    color: var(--color-text-light) !important;
    padding: 0.8rem 1.4rem !important;
    height: auto !important;
}
.header .btn-dark {
    background-color: var(--color-btn-light);
    border: 1px solid var(--color-border);
    color: var(--color-text-hover);
    padding: 0.8rem 1.4rem !important;
    height: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header .btn-dark:hover {
    border-color: var(--color-text-dark);
    color: var(--color-text-light);
}
.header .btn-header:hover {
    --start-color: #00b84a;
    --end-color: #04c65f;
}
.navbar-mobile .btn-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    cursor: pointer;
    height: 3.8rem;
    width: 3.8rem;
    background-color: var(--color-glow);
    border: 1px solid var(--color-glow-2);
    border-radius: 8px;
    transition: 0.15s;
}
.navbar-mobile .btn-hamburger:hover {
    color: var(--color-text-hover);
}
.btn-category {
    background-color: transparent;
    color: var(--color-text-light);
    padding: 0.6rem 1rem;
}
.btn-category:hover {
    background-color: var(--color-btn-light);
}
.btn-category.active {
    background-color: var(--color-btn-light);
}
.btn-page {
    width: auto;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    transition: 0.15s;
    font-size: 1.3rem;
    color: var(--color-text-light);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
}
.btn-page:hover {
    background-color: var(--color-glow);
    border: 1px solid var(--color-glow-2);
}
.btn-page.active {
    background-color: var(--color-glow);
    border: 1px solid var(--color-glow-2);
}

.btn-icon {
    font-size: 1.4rem;
    margin-left: 1rem;
    margin-top: 0.2rem;
}
.btn-icon-left {
    font-size: 1.4rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}
.btn-s-icon {
    font-size: 1.1rem;
    margin-left: 0.6rem;
    margin-top: 0.2rem;
}
.btn-s-icon-left {
    font-size: 1.1rem;
    margin-right: 0.6rem;
    margin-top: 0.2rem;
}

.popup-item-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}
.form-notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-btn-dark);
}
.announcement-icon {
    background: var(--color-text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    margin-right: 1rem;
}
header .dropdown-link .angle-down-icon {
    font-size: 1rem;
    margin-left: 0.5rem;
}
header .hamburger-icon {
    font-size: 1.6rem;
}
header .dropdown-item-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}
header .menu-mobile .angle-down-icon {
    transition: 0s;
}
footer .contact-text-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    margin: 0 0.5rem;
}
footer .footer-socials-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}
footer .footer-copyright-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    margin: 0 0.3rem;
    animation: glowing 2s infinite;
}
.services-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}
.statistics-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    margin-right: 0.75rem;
    animation: glowing 2s infinite;
}
.membership-benefits-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}
.home-blog .blog-box .date-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.home-blog .blog-box .time-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.contact-sales-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}
.discord-status-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
.order-details-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}
.plan-benefits-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}
.careers-about-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}
.open-positions .wrapper .position-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.4rem;
}
.open-positions .wrapper .time-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    margin-right: 0.5rem;
}
.open-positions .wrapper .location-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    margin-right: 0.5rem;
    margin-left: 1rem;
}
.open-positions .wrapper .angle-down-icon {
    color: var(--color-text-hover);
    font-size: 1.2rem;
    transition: color 0.15s;
}
.open-positions .wrapper .row-title-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
}
.project-link-icon {
    color: var(--color-text-light);
    font-size: 1.4rem;
}
.faq .wrapper .faq-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}
.faq .wrapper .angle-down-icon {
    font-size: 1.2rem;
}
.about-values-icon {
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}
.blog .wrapper .blog-box .date-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.blog .wrapper .blog-box .time-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.blog-posts .blog-info .date-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.blog-posts .blog-info .time-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.3rem;
    margin-right: 0.5rem;
}
.blog-posts .share-box .social-icon {
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.15s;
}
.blog-posts .share-box .social-icon:hover {
    opacity: 1;
}
.blog-posts .share-box .fa-copy.copied {
    opacity: 1;
    background: var(--color-linear-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grecaptcha-badge {
    visibility: hidden;
}

.observer {
    opacity: 0;
    transform: translateY(0.5em);
    transition: transform 1s ease, opacity 1s ease !important;
}
.observer.animate {
    opacity: 1;
    transform: translateY(0);
}

canvas {
    display: block;
    vertical-align: bottom;
}
#particles-js {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: -20;
    opacity: 0.25;
}

.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.preview-grid,
.process-grid,
.blog-grid,
.faq-grid {
    display: grid;
    gap: 1.6rem;
}

.preview-grid {
    grid-template-columns: repeat(3, minmax(18rem, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(18rem, 1fr));
}

/* Removed .faq-preview styles (FAQ preview moved/removed from homepage) */

.process-grid {
    grid-template-columns: repeat(4, minmax(18rem, 1fr));
}

.preview-card,
.faq-card,
.blog-card,
.blog-post-card,
.cta-box {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.preview-card h4,
.blog-card h2,
.blog-post-card h3,
.faq-card h3,
.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.preview-card p,
.blog-card p,
.blog-post-card p,
.faq-card p {
    color: var(--color-text-hover);
    line-height: 1.75;
}

.faq-list .faq-card {
    margin-bottom: 2rem;
    padding: 2.4rem;
    background: var(--color-btn-dark);
    border: 1px solid var(--color-border);
    border-radius: 1.4rem;
}

.faq-list .faq-card:last-child {
    margin-bottom: 0;
}

.faq-list .faq-card h3 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
}

.faq-list .faq-card p {
    color: var(--color-text-dark);
    line-height: 1.9;
}

.blog-card {
    min-height: 20rem;
}

.lk-chat-layout {
    display: grid;
    grid-template-columns: 28rem 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.lk-chat-sidebar,
.lk-chat-main {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
}

.lk-chat-sidebar h5,
.lk-chat-header h5 {
    margin-bottom: 1.4rem;
}

.lk-chat-item {
    display: block;
    padding: 1.3rem 1.4rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.lk-chat-item:hover,
.lk-chat-item.active {
    transform: translateY(-0.15rem);
    border-color: var(--color-secondary);
}

.lk-chat-item strong,
.lk-chat-item span {
    display: block;
}

.lk-chat-item span {
    margin-top: 0.4rem;
    color: var(--color-text-dark);
    font-size: 1.4rem;
}

.lk-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    max-height: 56rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.lk-bubble {
    max-width: 100%;
    padding: 1.6rem 1.8rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.lk-bubble.mine {
    align-self: flex-end;
    background: linear-gradient(90deg, rgba(5, 223, 114, 0.12), rgba(39, 174, 96, 0.18));
}

.lk-bubble.other {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.02);
}

.lk-bubble-meta {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 0.8rem;
}

.lk-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.lk-field {
    display: grid;
    gap: 0.75rem;
}

.lk-actions {
    display: flex;
    justify-content: flex-end;
}

.lk-note {
    color: var(--color-text-dark);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
}

.lk-invoice-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
    .lk-chat-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .lk-chat-sidebar {
        order: 2;
    }
}

.blog-posts {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.page-hero-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: var(--color-text-light);
    font-size: 1.8rem;
    line-height: 1.8;
}

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

.cta-box p {
    max-width: 50rem;
    margin: 1rem auto 1.8rem auto;
}

@media (max-width: 1120px) {
    .preview-grid,
    .faq-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(18rem, 1fr));
    }
}

@media (max-width: 860px) {
    .container {
        padding: 0 1.2rem;
    }
    .preview-grid,
    .faq-grid,
    .process-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .company h5,
    .navigation-mobile {
        display: flex;
    }
    .navbar {
        display: none;
    }
    .navbar-mobile {
        display: flex;
    }
    .howitworks .wrapper,
    .testimonials-row {
        flex-direction: column;
    }
    .page-hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 9px;
    }
    .hero .buttons,
    .blog-card .btn,
    .cta-box .btn {
        width: 100%;
    }
}

.hidden {
    display: none !important;
}

.disabled {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.no-scroll {
    overflow: hidden;
}

.bg-lines {
    position: relative;
    background-size: 6rem 6rem;
    background-position: center;
    background-image: linear-gradient(to right, rgb(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgb(255, 255, 255, 0.04) 1px, transparent 1px);
}
.bg-lines::before {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--color-background) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}
.home-page .bg-lines::before {
    display: block;
}

.bg-grid {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(9, 12, 17, 1) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: cover, 6rem 6rem, 6rem 6rem;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -999;
    pointer-events: none;
}

.bg-color {
    background-color: var(--color-background);
}
.bg-color.dark {
    background-color: var(--color-btn-dark);
}
.bg-color.light {
    background-color: var(--color-btn-light);
}

.line-1 {
    height: 0.1rem;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--color-btn-light) 10%, var(--color-btn-light) 90%, transparent 100%);
}
.line-2 {
    height: 0.1rem;
    width: 50rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 10%, var(--color-primary) 90%, transparent 100%);
}

.scroll-snap {
    scroll-snap-type: y mandatory;
}
.scroll-snap-section {
    scroll-snap-align: start;
}

.padding-5 {
    padding: 5rem 0;
    width: 100%;
}
.padding-10 {
    padding: 10rem 0;
    width: 100%;
}
.padding-15 {
    padding: 15rem 0;
    width: 100%;
}
.padding-20 {
    padding: 20rem 0;
    width: 100%;
}

.padding-top-5 {
    padding-top: 5rem;
    width: 100%;
}
.padding-top-10 {
    padding-top: 10rem;
    width: 100%;
}
.padding-top-15 {
    padding-top: 15rem;
    width: 100%;
}

.padding-bottom-5 {
    padding-bottom: 5rem;
    width: 100%;
}
.padding-bottom-10 {
    padding-bottom: 10rem;
    width: 100%;
}
.padding-bottom-15 {
    padding-bottom: 15rem;
    width: 100%;
}

.back-title {
    position: absolute;
    font-size: 15rem;
    color: transparent;
    -webkit-text-stroke: 2px transparent;
    background: linear-gradient(0deg, var(--color-background) 16%, var(--color-secondary) 50%, var(--color-background) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-background);
    text-shadow: none;
    text-transform: uppercase;
    opacity: 0.25;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
}
.back-title.dark {
    background: linear-gradient(0deg, var(--color-btn-dark) 16%, var(--color-secondary) 50%, var(--color-btn-dark) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-btn-dark);
}
.back-title.light {
    background: linear-gradient(0deg, var(--color-btn-light) 16%, var(--color-secondary) 50%, var(--color-btn-light) 84%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--color-btn-light);
}
.front-title {
    z-index: 1;
    text-align: center;
}
.sub-title {
    z-index: 1;
    text-align: center;
}

.vip-shine {
    background-position: 0;
    background: linear-gradient(to right, var(--color-text-dark) 0, var(--color-text-light) 10%, var(--color-text-dark) 20%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: shine 600s infinite linear;
    animation-fill-mode: forwards;
}

@keyframes shine {
    0% {
        background-position: 0;
    }
    100% {
        background-position: 5000rem;
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
@keyframes pulse-2 {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
@keyframes glowing {
    0%,
    100% {
        text-shadow: 0 0 8px var(--color-primary);
    }
    50% {
        text-shadow: 0 0 0px var(--color-primary);
    }
}

@keyframes from-right {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
    }
}
@keyframes modal-fade-in {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes loading-scaling {
    0%,
    100% {
        transform: scale(0.85);
    }
    50% {
        transform: scale(1);
    }
}
@keyframes hero-glow-scaling {
    0%,
    100% {
        height: 30rem;
    }
    50% {
        height: 50rem;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(-180deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
@keyframes as-seen-on-slider-lane-1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(var(--as-seen-on-slide-width) * var(--as-seen-on-slide-count) * -1));
    }
}
@keyframes SwipefadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes careers-slider-lane-1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(var(--careers-slide-width) * var(--careers-slide-count) * -1));
    }
}
@keyframes careers-card-wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes checkbox-check {
    from {
        transform: rotate(45deg) scale(0);
    }
}
@keyframes careers-submit-loading {
    0% {
        content: "";
    }

    10% {
        content: ".";
    }

    45% {
        content: "..";
    }

    80% {
        content: "...";
    }

    100% {
        content: "";
    }
}

@media screen and (min-width: 851px) and (max-width: 1068px) {
}

@media screen and (min-width: 601px) and (max-width: 850px) {
    :root {
        --as-seen-on-slide-width: 12.5rem;
        --careers-slide-width: 7.2rem;
    }

    h1,
    .title-h1 {
        font-size: 4.2rem;
    }
    h2,
    .title-h2 {
        font-size: 4.2rem;
    }
    h3,
    .title-h3 {
        font-size: 2.8rem;
    }
    h4,
    .title-h4 {
        font-size: 2.4rem;
    }
    h5,
    .title-h5 {
        font-size: 2rem;
    }
    h6,
    .title-h6 {
        font-size: 1.8rem;
    }

    .services-icon {
        font-size: 1.3rem;
    }

    .padding-5 {
        padding: 4rem 0;
    }
    .padding-10 {
        padding: 8rem 0;
    }
    .padding-15 {
        padding: 12rem 0;
    }
    .padding-20 {
        padding: 16rem 0;
    }

    .padding-top-5 {
        padding-top: 4rem;
    }
    .padding-top-10 {
        padding-top: 8rem;
    }
    .padding-top-15 {
        padding-top: 12rem;
    }

    .padding-bottom-5 {
        padding-bottom: 4rem;
    }
    .padding-bottom-10 {
        padding-bottom: 8rem;
    }
    .padding-bottom-15 {
        padding-bottom: 12rem;
    }

    .back-title {
        font-size: 12rem;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --as-seen-on-slide-width: 10rem;
        --careers-slide-width: 6.4rem;
    }

    h1,
    .title-h1 {
        font-size: 3.2rem;
    }
    h2,
    .title-h2 {
        font-size: 3.2rem;
    }
    h3,
    .title-h3 {
        font-size: 2.4rem;
    }
    h4,
    .title-h4 {
        font-size: 2.2rem;
    }
    h5,
    .title-h5 {
        font-size: 1.8rem;
    }
    h6,
    .title-h6 {
        font-size: 1.8rem;
    }

    p,
    a,
    ul,
    ol,
    li,
    label,
    input,
    textarea,
    select,
    option,
    button,
    .btn {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
    }
    .footer .btn-footer-contact {
        width: 100%;
    }
    .btn-category {
        padding: 0.5rem 1rem;
    }
    .btn-page {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
        border-radius: 6px;
    }

    .services-icon {
        font-size: 1.3rem;
    }
    .careers-about-icon {
        font-size: 2.4rem;
    }
    .pagination .btn-s-icon {
        font-size: 1rem;
    }
    .pagination .btn-s-icon-left {
        font-size: 1rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .padding-5 {
        padding: 2.5rem 0;
    }
    .padding-10 {
        padding: 5rem 0;
    }
    .padding-15 {
        padding: 7.5rem 0;
    }
    .padding-20 {
        padding: 10rem 0;
    }

    .padding-top-5 {
        padding-top: 2.5rem;
    }
    .padding-top-10 {
        padding-top: 5rem;
    }
    .padding-top-15 {
        padding-top: 7.5rem;
    }

    .padding-bottom-5 {
        padding-bottom: 2.5rem;
    }
    .padding-bottom-10 {
        padding-bottom: 5rem;
    }
    .padding-bottom-15 {
        padding-bottom: 7.5rem;
    }

    .back-title {
        font-size: 8rem;
        margin-top: -3rem;
    }

    /* Removed small .faq-preview rules (homepage preview removed) */

    /* Removed responsive and card styles for .faq-preview (no longer used) */

    .faq-list .faq-card {
        margin-bottom: 2rem;
        padding: 2rem;
        background: var(--color-btn-dark);
        border: 1px solid var(--color-border);
        border-radius: 1rem;
    }

    .faq-list .faq-card h3 {
        margin-bottom: 1rem;
        font-size: 2.2rem;
    }

    .faq-list .faq-card p {
        color: var(--color-text-dark);
        line-height: 1.8;
    }
}

/* 404 Page Styles */
.page-not-found-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--height-header) - 20rem);
    padding: 5rem 2rem;
}

.page-not-found-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    max-width: 60rem;
}

.page-not-found-badge {
    font-size: 12rem;
    font-family: var(--font-family-2);
    font-weight: var(--font-weight-black);
    background: var(--color-linear-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.page-not-found-card h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.page-not-found-card p {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.page-not-found-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.page-not-found-actions .btn {
    min-width: 15rem;
}

@media (max-width: 768px) {
    .page-not-found-section {
        min-height: calc(100vh - var(--height-header));
    }

    .page-not-found-badge {
        font-size: 8rem;
    }

    .page-not-found-card h1 {
        font-size: 2.4rem;
    }

    .page-not-found-card p {
        font-size: 1.6rem;
    }

    .page-not-found-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .page-not-found-actions .btn {
        width: 100%;
    }
}
