.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff0;
    color: #e4e4e4;
    padding: 10px 20px;
    pointer-events: none;
}
.header * {
    pointer-events: auto;
}
.header.transparent {
    background: #fff0;
    transition: background 0.4s ease;
    pointer-events: none;
}
.header.transparent * {
    pointer-events: auto;
}
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.DEV {
    margin-left: auto;
    margin-right: 80px;
}
.DEV h3 {
    margin: 0;
    font-size: 20px;
}
.Logo-header img {
    max-height: 100px;
    max-width: 100px;
    display: block;
    transition: transform 0.3s ease;
}
.Logo-header img:hover {
    transform: scale(1.2);
    transition: 0.3s;
}
.site-footer {
    background: linear-gradient(145deg, #0d0d0d, #151515, #0d0d0d);
    padding: 50px 20px;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    color: #ccc;
    border-top: 1px solid rgb(255 255 255 / 0.05);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(70 70 70 / 0.08) 0%, transparent 60%);
    animation: footerGlow 8s infinite alternate ease-in-out;
    z-index: 0;
}
@keyframes footerGlow {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1.2);
        opacity: 1;
    }
}
.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    font-size: 15px;
    font-weight: 400;
    color: rgb(200 200 200 / 0.8);
    letter-spacing: 0.5px;
    font-family: "Times New Roman", Times, serif;
}
.footer-links {
    font-weight: 400;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: rgb(240 240 240 / 0.85);
    transition: all 0.3s ease;
    position: relative;
}
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2d2d2d, #676767);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: #b8aaff;
}
.footer-links a:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .footer-links {
        gap: 20px;
    }
    .footer-logo {
        font-size: 14px;
    }
}
.steps,
.services {
    background: #fff0;
    margin-bottom: 40px;
}
h2 {
    margin-bottom: 20px;
    font-size: 32px;
}
p {
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.card {
    background: #1e1e1e78;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgb(0 0 0 / 0.1);
}
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}
@font-face {
    font-family: "Unbounded";
    src: url(fonts/Unbounded-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Unbounded";
    src: url(fonts/Unbounded-Variable.woff) format("woff");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
body {
    margin: 0;
    font-family: "Unbounded", Arial, sans-serif;
    background: #101010;
    color: #e4e4e4;
    scrollbar-width: none;
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    display: none;
}
.step-bar {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    gap: 20px;
}
.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff0;
    transition: background 0.3s, border 0.3s;
}
.step-icon.active {
    border: 2px solid #fff;
    background-color: #555;
}
.card.active {
    background: #fff;
    color: #000;
    transform: scale(1.03);
    transition: 0.4s;
}
.card .step-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.card .step-number img {
    width: 50px;
    height: 50px;
}
.hero {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-top: 120px;
    background-color: #0000;
}
#torus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: auto;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #e4e4e4;
    max-width: 700px;
    padding-right: 650px;
    padding-bottom: 100px;
    pointer-events: none;
}
.hero-content h1 {
    font-size: 29px;
}
.hero-content h1 span {
    font-size: 29px;
    text-shadow: 0 0 5px #000000bb, 0 0 10px #f7b77e44, 0 0 20px #ff88004a, 0 0 40px #ff620041;
}
.hero-content p {
    font-size: 16px;
    line-height: 1.4;
}
.typewriter-wrapper {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #fafafa;
    color: #c23709;
    display: inline-block;
    animation: blink-caret 0.75s step-end infinite;
    font-size: 20px;
}
@keyframes blink-caret {
    from,
    to {
        border-color: #fff0;
    }
    50% {
        border-color: #fff;
    }
}
.hero-content h1 span {
    color: #c23709;
}
.hero-content .btn {
    pointer-events: auto;
}
.hero-content .btn:hover {
    background-color: #aeaeae;
    color: #fff;
    transition: background 0.4s ease;
}
section:not(.hero, .three-D-form, .steps) {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 380px;
}
.steps-div {
    margin-left: 100px;
    margin-right: 100px;
}
.steps {
    margin-top: 350px;
}
.services-block {
    background: linear-gradient(#10101063, #2e2e2e62);
    backdrop-filter: blur(2px);
    padding: 60px 20px;
    color: #e4e4e4;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    border-radius: 30px;
}
.services-block h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}
.services-block h2 span {
    color: #fff;
    opacity: 0.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: #0d0d0dc7;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.service-icon {
    width: 42px;
    height: 42px;
    background: #540169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-header h3 {
    font-size: 22px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    max-height: 350px;
    overflow-y: auto;
}
.service-item_s .desc {
    max-height: 120px;
    overflow-y: auto;
    padding-right: 6px;
}
.service-item_s .desc::-webkit-scrollbar {
    width: 6px;
}
.service-item_s .desc::-webkit-scrollbar-thumb {
    background: rgb(100 100 100 / 0.4);
    border-radius: 4px;
}
.service-item_s .desc::-webkit-scrollbar-track {
    background: #fff0;
}
.service-list::-webkit-scrollbar {
    width: 6px;
}
.service-list::-webkit-scrollbar-thumb {
    background: rgb(150 150 150 / 0.4);
    border-radius: 4px;
}
.service-list::-webkit-scrollbar-track {
    background: #fff0;
}
.services-block .service-list {
    margin-bottom: 10px;
}
.service-item {
    padding: 15px 0;
    cursor: pointer;
    border-radius: 10px;
}
.service-item:hover {
    background: #0e0e0e;
    opacity: 1;
}
.service-item .desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: "Unbounded";
    display: none;
}
.service-item.active .desc {
    max-height: 500px;
    font-family: "Unbounded", sans-serif;
    font-weight: 300;
    font-size: 12px;
    text-align: left;
    margin-right: 15px;
    display: block;
}
.apply-btn {
    background: #540169;
    color: #e4e4e4;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.apply-btn:hover {
    background: #8902ab;
}
.service-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    align-items: left;
    margin-left: 5px;
}
.service-img3 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    align-items: left;
}
.service-img2 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    align-items: left;
    margin-left: 10px;
}
.service-img-brand {
    width: 35x;
    height: 35px;
    flex-shrink: 0;
    align-items: left;
}
.title {
    font-weight: 700;
    font-size: 16px;
}
.desc {
    font-size: 12px;
    color: #e4e4e4;
    line-height: 1.4;
    margin-top: 8px;
    margin-left: 50px;
    display: none;
}
.service-toggle {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    cursor: pointer;
}
.scroll-card {
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 auto;
    background: #1a1a1a0c;
    backdrop-filter: blur(1px);
    padding: 30px 24px;
    border-radius: 45px;
    color: #e4e4e4;
    scroll-snap-align: center;
    transition: transform 0.4s ease, filter 0.3s;
    box-shadow: 0 6px 20px rgb(0 0 0 / 0.3);
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.scroll-card:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.gradient-1::before,
.gradient-2::before,
.gradient-3::before,
.gradient-4::before,
.gradient-5::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#101010a7, #454545a8);
    z-index: 0;
}
.gradient-2::before {
    background: linear-gradient(#1010103d, rgb(85 0 255 / 0.171));
}
.gradient-3::before {
    background: linear-gradient(#101010a8, rgb(255 0 179 / 0.41));
}
.gradient-4::before {
    background: linear-gradient(#1010109d, rgb(0 229 255 / 0.41));
}
.gradient-5::before {
    background: linear-gradient(#1010109d, rgb(255 170 0 / 0.471));
}
.scroll-card > * {
    position: relative;
    z-index: 1;
}
.request-btn {
    margin: 20px auto 0;
    background: #fff;
    color: #000;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
}
.scroll-card.gradient-4 .request-btn {
    transform: translate(50px, -8px);
}
.scroll-card.gradient-3 .request-btn {
    transform: translateY(-10px);
}
.scroll-card.gradient-5 .request-btn {
    transform: translateY(-5px);
}
.checkbox-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
}
.checkbox-wrapper input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}
.checkbox-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: background 0.2s ease;
}
.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-circle::after {
    content: "✓";
    color: #e4e4e4;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gradient-1 .scrollable-service-list,
.gradient-2 .scrollable-service-list,
.gradient-3 .scrollable-service-list,
.gradient-5 .scrollable-service-list,
.scroll-card.gradient-4 .scrollable-service-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}
.gradient-4 .scrollable-service-list {
    transform: translateY(-10px);
}
.gradient-5 .scrollable-service-list {
    transform: translateY(10px);
}
.gradient-3 .scrollable-service-list {
    transform: translateY(-20px);
}
.scroll-card.gradient-1 .scrollable-service-list::-webkit-scrollbar,
.scroll-card.gradient-2 .scrollable-service-list::-webkit-scrollbar,
.scroll-card.gradient-5 .scrollable-service-list::-webkit-scrollbar,
.scroll-card.gradient-4 .scrollable-service-list::-webkit-scrollbar,
.scroll-card.gradient-3 .scrollable-service-list::-webkit-scrollbar {
    display: visible;
    background-color: #0000;
    width: 5px;
}
.scroll-card.gradient-1 .scrollable-service-list::-webkit-scrollbar-thumb,
.scroll-card.gradient-2 .scrollable-service-list::-webkit-scrollbar-thumb,
.scroll-card.gradient-3 .scrollable-service-list::-webkit-scrollbar-thumb,
.scroll-card.gradient-5 .scrollable-service-list::-webkit-scrollbar-thumb,
.scroll-card.gradient-4 .scrollable-service-list::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.request-btn:hover {
    background: #ccc;
}
.service-item .desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    margin-top: 6px;
}
.service-item.active .desc {
    max-height: 500px;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.scroll-arrow:hover {
    opacity: 1;
}
.services-scroll-block {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: visible !important;
}
@media (min-width: 1024px) {
    .scroll-wrapper {
        overflow: visible !important;
        position: relative;
        z-index: 0;
    }
    .scroll-container {
        overflow-x: auto;
        overflow-y: visible;
        display: flex;
        gap: 18px;
        scroll-behavior: smooth;
        padding: 20px;
        position: relative;
        z-index: 1;
    }
    .scroll-card {
        min-width: 320px;
        max-width: 320px;
        flex: 0 0 auto;
        position: relative;
        z-index: 1;
        transform: rotateY(0deg) translateZ(0);
        transition: transform 0.6s ease, filter 0.4s;
    }
    .scroll-card:nth-child(1) {
        transform: rotateY(-30deg) translateZ(20px) translateX(40px);
    }
    .scroll-card:nth-child(2) {
        transform: rotateY(-20deg) translateZ(5px);
    }
    .scroll-card:nth-child(3) {
        transform: rotateY(10deg) translateZ(0);
    }
    .scroll-card:nth-child(4) {
        transform: rotateY(20deg) translateZ(5px);
    }
    .scroll-card:nth-child(5) {
        transform: rotateY(30deg) translateZ(20px) translateX(-40px);
    }
    .scroll-card:hover {
        transform: rotateY(0deg) translateZ(120px) scale(1.05);
        filter: brightness(1.3);
        z-index: 999 !important;
    }
    .services-scroll-block,
    .scroll-wrapper {
        overflow: visible;
        position: relative;
        z-index: 0;
    }
    .scroll-container {
        overflow-x: auto;
        overflow-y: visible;
    }
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: #fff;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 12px 16px;
    box-shadow: 0 0 12px rgb(0 0 0 / 0.1);
    border-radius: 50%;
}
.scroll-arrow.left {
    left: -50px;
}
.scroll-arrow.right {
    right: -50px;
}
.services-scroll-block h2 {
    text-align: center;
    margin-bottom: 40px;
}
.services-scroll-block h2 span {
    color: #929292 !important;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin-top: 10px;
}
.price {
    font-size: 1.2rem;
    transform: translateY(5px);
    transform: translateX(10px);
}
.price-old {
    text-decoration: line-through;
    color: #b20404;
    margin-left: 0.5rem;
    font-size: small;
}
.price-current {
    font-weight: 700;
    color: #fff;
}
* {
    user-select: none;
}
.cases-section {
    width: 100%;
    padding: 4rem 1rem;
    background: #fff0;
    color: #e4e4e4;
    text-align: center;
}
.case-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.case-thumb {
    padding: 0.8rem 1.2rem;
    margin-bottom: 10px;
    background: #222;
    color: #e4e4e4;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.case-thumb.active {
    background: #f63;
}
.ipad-wrapper {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
.ipad-frame {
    width: 73vw;
    height: 700px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 20px #fff0;
    position: relative;
    padding: 0;
}
#ipad-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    background-color: #0000;
    margin-top: -7rem;
}
.dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}
.dot {
    width: 12px;
    height: 12px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #f63;
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}
.why-us-section {
    padding: 4rem 1rem;
    margin-top: -10px;
    text-align: center;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 100px;
    font-weight: 700;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
.glow-card {
    padding: 2rem;
    border-radius: 12px;
    background: #1b1b1b2e;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: box-shadow 0.5s ease;
    backdrop-filter: blur(3px);
}
.glow-card.active {
    box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
}
.glow-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1b1b1b, #332800, #523101, #1b1b1b);
    background-size: 400% 400%;
    opacity: 0.4;
    z-index: -1;
    border-radius: inherit;
    animation: gradientShift 5s ease infinite;
}
.card-icon1 {
    width: 75px;
    margin-bottom: 0;
}
.glow-card h3 {
    font-size: 1.2rem;
    color: #facc15;
    margin-bottom: 0.5rem;
}
.glow-card p {
    font-size: 0.95rem;
}
@keyframes glowCycle {
    0%,
    13.9%,
    100% {
        box-shadow: 0 0 0 #fff0;
    }
    8.3% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
    16.6%,
    30.5% {
        box-shadow: 0 0 0 #fff0;
    }
    25% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
    33.3%,
    47.2% {
        box-shadow: 0 0 0 #fff0;
    }
    41.6% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
    50%,
    63.8% {
        box-shadow: 0 0 0 #fff0;
    }
    58.3% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
    66.6%,
    80.5% {
        box-shadow: 0 0 0 #fff0;
    }
    75% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
    83.3%,
    97.2% {
        box-shadow: 0 0 0 #fff0;
    }
    91.6% {
        box-shadow: 0 0 25px rgb(255 153 0 / 0.5);
    }
}
.case-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}
.case-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.case-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 800px;
}
#canvas-container {
    width: 100%;
    height: 400px;
}
.three-D-form {
    display: flex;
    justify-content: center;
    padding: 90px 90px;
    background-color: #0000;
    margin-bottom: 0;
}
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 100px;
}
model-viewer {
    width: 50%;
    margin-top: 150px;
    margin-right: 180px;
    max-width: 500px;
    height: 500px;
    flex-shrink: 0;
}
.form-wrapper {
    flex: 1;
    min-width: 380px;
    max-width: 500px;
    background-color: #1a1a1a62;
    padding: 50px;
    margin-right: 120px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.4);
}
.form-wrapper h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
}
.form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-wrapper label {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #cccccc8e;
}
.form-wrapper input,
.form-wrapper select {
    font-family: sans-serif;
    margin-top: 8px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #2b2b2b;
    color: #fff;
    font-size: 16px;
}
.form-wrapper input::placeholder {
    color: #777;
}
.form-wrapper button {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6a5acd, #483d8b);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.form-wrapper button:hover {
    background: linear-gradient(135deg, #7b68ee, #4b0082);
    transition: 0.3s ease;
}
.contact-form-section {
    background-color: #fff0;
    color: #fff;
    font-family: "Unbounded";
}
.contact-form-section2 {
    background-color: #fff0;
    color: #fff;
    font-family: "Unbounded";
}
.content-wrapper-text {
    text-align: center;
    margin-top: 500px;
    margin-bottom: -3%;
}
.g-recaptcha {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 80px;
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
#cyberBackground {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 200vh;
    background: radial-gradient(#0d0d0d, #1a1a1a);
    pointer-events: none;
    transition: transform 0.2s ease-out;
    will-change: transform;
}
.burger-nav {
    display: none;
}
.menu {
    position: fixed;
    bottom: 40px;
    right: 50px;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 998;
    pointer-events: auto;
}
.menu .toggle {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    color: #262433;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    cursor: pointer;
    transition: 0.5s;
    pointer-events: auto;
}
.menu .toggle.active {
    transform: rotate(315deg);
    box-shadow: 0 0 0 62px #fff;
    background: #262433;
    color: #fff;
}
.menu li {
    position: absolute;
    left: 10px;
    list-style: none;
    transform: rotate(calc(360deg / 8 * var(--i))) translateX(40px);
    transform-origin: 140px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 10;
    pointer-events: auto;
}
.menu.active li {
    visibility: visible;
    opacity: 1;
    left: -3px;
}
.menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    font-size: 1.75em;
    color: #262433;
    transform: rotate(calc(360deg / -8 * var(--i)));
    border-radius: 50%;
}
.menu.active li.active {
    transform: rotate(calc(360deg / 8 * var(--i))) translateX(0);
}
.indicator {
    position: absolute;
    left: 58%;
    top: 50%;
    transform-origin: center;
    width: 1px;
    height: 1px;
    pointer-events: none;
    transition: 0.5s;
}
.indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #ff8a04;
    box-shadow: 0 0 0 6px #262433;
    border-radius: 50%;
    transition: 0.5s;
    opacity: 0;
}
.menu.active .indicator::before {
    opacity: 1;
}
.menu li:nth-child(2).active ~ .indicator {
    transform: rotate(0deg) translateX(-114px);
}
.menu li:nth-child(3).active ~ .indicator {
    transform: rotate(44deg) translateX(-114px);
}
.menu li:nth-child(4).active ~ .indicator {
    transform: rotate(89deg) translateX(-113px);
}
.menu li:nth-child(5).active ~ .indicator {
    transform: rotate(134deg) translateX(-110px);
}
.menu li:nth-child(6).active ~ .indicator {
    transform: rotate(180deg) translateX(-109px);
}
.menu li:nth-child(7).active ~ .indicator {
    transform: rotate(226deg) translateX(-110px);
}
.menu li:nth-child(8).active ~ .indicator {
    transform: rotate(271deg) translateX(-113px);
}
.menu li:nth-child(9).active ~ .indicator {
    transform: rotate(315deg) translateX(-114px);
}
.glow-center {
    position: absolute;
    top: 100%;
    left: 100%;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgb(255 111 0 / 0.8), transparent 70%);
    filter: blur(110px);
    opacity: 0.15;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: glowPulseCenter 4s ease-in-out infinite;
}
.glow-center2 {
    position: absolute;
    top: 10%;
    left: 3%;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgb(98 0 255 / 0.8), transparent 70%);
    filter: blur(110px);
    opacity: 0.15;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: glowPulseCenter 4s ease-in-out infinite;
}
@keyframes glowPulseCenter {
    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(1.05);
    }
}
.legal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}
.toggle-btn,
.static-link {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
    background: linear-gradient(135deg, #414141, #333333);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.toggle-btn::before,
.static-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 0.2);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}
.toggle-btn:hover::before,
.static-link:hover::before {
    left: 100%;
}
.toggle-btn:hover,
.static-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(255 255 255 / 0.9);
}
.text-block {
    background: rgb(23 23 23 / 0.08);
    border-left: 4px solid rgb(255 157 0 / 0.6);
    padding: 35px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    border-radius: 14px;
    color: #e8f7ff;
    line-height: 1.8;
    box-shadow: 0 0 30px rgb(255 255 255 / 0.08);
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    display: none;
    animation: fadeSlideUp 0.6s ease forwards;
}
.text-block h3 {
    color: #d7d7d7;
    text-shadow: 0 0 8px rgb(255 255 255 / 0.6);
    margin-bottom: 18px;
    font-size: 1.6rem;
    text-align: center;
}
.text-block strong {
    color: #ff9d00;
}
.text-block p {
    margin-bottom: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
    padding-bottom: 10px;
}
.text-block p:last-child {
    border-bottom: none;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pref {
    font-size: 10px;
    transform: translateY(90px);
    text-align: center;
    color: rgb(255 151 5 / 0.668);
}
.scroll-card.gradient-1 .HOT,
.scroll-card.gradient-2 .HOT,
.scroll-card.gradient-5 .HOT {
    font-size: 10px;
    transform: translateY(20px);
    text-align: center;
    color: rgb(255 255 255 / 0.908);
}
.scroll-card.gradient-1 .HOT span,
.scroll-card.gradient-2 .HOT span,
.scroll-card.gradient-5 .HOT span {
    font-size: 10px;
    transform: translateY(25px);
    text-align: center;
    color: rgb(176 176 176 / 0.562);
}
.scroll-card.gradient-4 .HOT span {
    transform: translateY(-5px);
    font-size: 10px;
    text-align: center;
    color: rgb(176 176 176 / 0.562);
}
.scroll-card.gradient-3 .HOT span {
    font-size: 10px;
    transform: translateY(-5px);
    text-align: center;
    color: rgb(176 176 176 / 0.562);
}
.scroll-card.gradient-4 .HOT {
    transform: translateY(5px);
    font-size: 10px;
    text-align: center;
    color: rgb(252 252 252 / 0.813);
}
.scroll-card.gradient-3 .HOT {
    font-size: 10px;
    transform: translateY(14px);
    text-align: center;
    color: rgb(251 251 251 / 0.681);
}
.seo-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: rgb(10 10 10 / 0.7);
    padding: 12px 0;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    transform: translateY(40px);
}
.seo-track {
    display: inline-flex;
    animation: seo-scroll 40s linear infinite;
}
.seo-item {
    color: rgb(109 109 109 / 0.552);
    font-size: 14px;
    font-family: "Unbounded", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 30px;
    position: relative;
    transition: color 0.3s, text-shadow 0.3s;
}
.seo-item:hover {
    color: #ff7300;
    text-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080;
}
@keyframes seo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .glow-center {
        display: none;
    }
    .glow-center3 {
        position: absolute;
        top: 85%;
        left: 60%;
        width: 300px;
        height: 150px;
        background: radial-gradient(circle, #ff6f00, transparent 100%);
        filter: blur(80px);
        opacity: 0.15;
        pointer-events: none;
        transform: translate(-50%, -50%);
    }
    #cyberBackground {
        display: none;
    }
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }
    html,
    body {
        font-size: 14px;
        overflow-x: hidden;
    }
}
@media (max-width: 768px) {
    html,
    body {
        font-size: 14px;
        overflow-x: hidden;
    }
    .header {
        padding: 6px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transform: translateX(-20px);
    }
    .Logo-header img {
        max-width: 70px;
        transform: translateX(-12px);
        transform: translateY(-7px);
        height: auto;
        opacity: 0.65;
    }
    .DEV {
        flex: 1;
        display: flex;
        justify-content: center;
        transform: translateX(10px);
    }
    .DEV h3 {
        font-size: 14px;
        margin: 0;
        transform: translateY(-9px);
        opacity: 0.65;
    }
    .burger-menu {
        display: flex;
        align-items: center;
        margin-right: 15px;
        opacity: 0.65;
    }
    .burger-toggle {
        font-size: 20px;
        cursor: pointer;
    }
}
@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 20px;
    }
    #typewriter {
        font-size: 12px;
        margin-top: 10px;
    }
    .hero-content {
        transform: translateY(-100px);
        padding: 0 10px;
    }
    .hero-content h1 {
        font-size: 18px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .hero-content p {
        font-size: 12px;
        margin-top: 10px;
        margin-left: 35px;
        margin-right: 35px;
    }
    .hero-content h1 span {
        font-size: 16px;
    }
    .btn {
        width: 250px;
    }
}
@media (max-width: 768px) {
    #torus {
        display: block;
        margin: 0 auto;
        position: relative;
    }
    .seo-marquee {
        overflow: hidden;
        white-space: nowrap;
        background: rgb(10 10 10 / 0.7);
        padding: 12px 0;
        border-top: 1px solid #c23709;
        border-bottom: 1px solid #c23709;
        transform: translateY(40px);
        margin-top: 100px;
    }
    .seo-track {
        display: inline-flex;
        animation: seo-scroll 40s linear infinite;
    }
    .seo-item {
        color: #c23709;
        font-size: 14px;
        font-family: "Unbounded", sans-serif;
        text-transform: uppercase;
        text-decoration: none;
        margin: 0 30px;
        position: relative;
        transition: color 0.3s, text-shadow 0.3s;
    }
}
@media (min-width: 769px) {
    .burger-menu {
        display: none;
    }
}
@media (max-width: 768px) {
    .radial-menu {
        display: none;
    }
    .burger-menu {
        display: block;
        position: fixed;
        top: 10px;
        right: 10px;
    }
    .burger-toggle {
        font-size: 2rem;
        cursor: pointer;
    }
    .burger-nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 40px;
        right: 0;
    }
    .burger-nav a {
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    .burger-menu.active .burger-nav {
        display: flex;
    }
}
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu li,
    .indicator {
        display: none;
    }
    .burger-toggle {
        position: fixed;
        top: 14px;
        right: 25px;
        margin-top: 5px;
        width: 20px;
        height: 17px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1002;
    }
    .burger-toggle span {
        display: block;
        height: 3px;
        background: whitesmoke;
        opacity: 0.65;
        border-radius: 3px;
        transition: 0.3s ease;
    }
    .burger-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px) translateX(2px);
    }
    .burger-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 1000;
    }
    .burger-overlay.active {
        opacity: 1;
        visibility: visible;
        color: whitesmoke;
    }
    .burger-nav {
        position: fixed;
        top: 0;
        right: -290px;
        width: 240px;
        height: 100vh;
        background: #1a1a1a;
        opacity: 0.95;
        box-shadow: -2px 0 10px rgb(0 0 0 / 0.2);
        display: flex;
        flex-direction: column;
        padding: 60px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    .burger-nav.active {
        right: 0;
    }
    .burger-nav a {
        text-decoration: none;
        color: #cacaca;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        transition: 0.2s;
    }
    .burger-nav a:hover {
        color: #ff8a04;
    }
}
@media (max-width: 768px) {
    .steps-div,
    .services-block {
        padding: 10px 15px;
    }
    .steps-div h2,
    .services-block h2 {
        font-size: 15px;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .services-block {
        transform: translateY(-250px);
    }
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .service-card {
        padding: 15px;
        border-radius: 12px;
        background: rgb(255 255 255 / 0.04);
    }
    .service-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .service-header h3 {
        font-size: 15px;
        margin: 0;
    }
    .service-icon h3 {
        font-size: 20px;
    }
    .service-list {
        margin-top: 10px;
    }
    .service-item {
        margin-bottom: 10px;
    }
    .service-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .service-icon {
        background-color: #101010b6;
    }
    .service-toggle img {
        width: 24px;
        height: auto;
    }
    .service-toggle .title {
        font-size: 0.9rem;
    }
    .desc {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-left: 32px;
        margin-top: 4px;
    }
    .apply-btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 8px;
        background: #500464;
        color: #fff;
        border: none;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .steps {
        transform: translateY(-120px);
        padding: 30px 0;
        overflow-x: hidden;
    }
    .steps-div {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        transform: translateX(-100px);
    }
    .steps-div h2 {
        margin-right: 10px;
    }
    .step-bar {
        display: flex;
        justify-content: space-between;
        gap: 4px;
        margin-bottom: 25px;
        margin-right: 100px;
        margin-left: 86px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1px;
        box-sizing: border-box;
    }
    .step-bar::-webkit-scrollbar {
        display: none;
    }
    .step-icon {
        flex: 0 0 auto;
        width: 35px;
        height: 35px;
    }
    .step-icon img {
        width: 35px;
        height: 35px;
    }
    #card1 img,
    #card2 img,
    #card3 img,
    #card4 img {
        width: 35px;
        height: 35px;
    }
    .grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .card {
        width: calc(100% - 20px);
        max-width: 500px;
        box-sizing: border-box;
    }
}
@media (max-width: 768px) {
    .services-scroll-block h2 {
        font-size: 15px;
        color: rgb(197 197 197 / 0.845);
    }
    .services-scroll-block span {
        color: #fff;
    }
    .services-scroll-block {
        transform: translateY(-500px);
    }
    #PACKAGES .price {
        font-size: 1.2rem;
        transform: translateY(5px);
        transform: translateX(20px);
    }
    #PACKAGES .pref {
        transform: translateY(80px);
    }
    #PACKAGES .scroll-card.gradient-3 .request-btn {
        transform: translateY(-15px);
    }
    #PACKAGES .price-old {
        text-decoration: line-through;
        color: #b20404;
        margin-left: 0.5rem;
        font-size: small;
    }
    #PACKAGES .price-current {
        font-weight: 700;
        color: #fff;
    }
    #PACKAGES .scroll-wrapper {
        overflow: visible;
        transform: translateX(15px);
    }
    #PACKAGES .scroll-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    #PACKAGES .scroll-card {
        width: 100%;
        overflow: hidden;
        max-height: 70px;
        transition: max-height 0.4s ease;
        cursor: pointer;
        border-radius: 12px;
        padding: 0;
    }
    #PACKAGES .scroll-card.active {
        max-height: 2000px;
        padding-bottom: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 15px;
    }
    #PACKAGES .desc {
        font-family: sans-serif;
        font-weight: 10px;
        margin-left: 50px;
    }
    #PACKAGES .service-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background: rgb(255 255 255 / 0.1);
    }
    #PACKAGES .scroll-card:not(.active) .scrollable-service-list,
    #PACKAGES .scroll-card:not(.active) .card-footer,
    #PACKAGES .scroll-card:not(.active) .HOT {
        display: none;
    }
    #PACKAGES .scroll-arrow {
        display: none;
    }
    .scrollable-service-list {
        align-items: center;
        margin-left: 10px;
    }
    .checkbox-wrapper {
        display: inline-flex;
        align-items: center;
        margin-right: 12px;
        cursor: pointer;
        position: relative;
    }
    .checkbox-wrapper input[type="checkbox"] {
        opacity: 0;
        position: absolute;
        width: 0;
        height: 0;
    }
    .checkbox-circle {
        width: 20px;
        height: 20px;
        margin-left: 10px;
        border: 2px solid #fff;
        border-radius: 50%;
        display: inline-block;
        position: relative;
        transition: background 0.2s ease;
    }
    .checkbox-wrapper input[type="checkbox"]:checked + .checkbox-circle::after {
        content: "✓";
        color: #008a07;
        font-size: 25px;
        font-weight: 700;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 768px) {
    #PACKAGES .service-header {
        background: #222;
        color: #fff;
    }
    #PACKAGES .service-header:hover {
        background: #333;
    }
    #PACKAGES .scroll-card.gradient-1 .service-header {
        background: #45454555;
    }
    #PACKAGES .scroll-card.gradient-2 .service-header {
        background: rgb(85 0 255 / 0.171);
    }
    #PACKAGES .scroll-card.gradient-3 .service-header {
        background: rgb(255 0 179 / 0.41);
    }
    #PACKAGES .scroll-card.gradient-4 .service-header {
        background: linear-gradient(rgb(2 168 187 / 0.491), rgb(0 229 255 / 0.41));
    }
    #PACKAGES .scroll-card.gradient-5 .service-header {
        background: linear-gradient(rgb(255 170 0 / 0.471), rgb(195 130 1 / 0.471));
    }
    #PACKAGES .scroll-card.gradient-1 .service-img,
    #PACKAGES .scroll-card.gradient-2 .service-img,
    #PACKAGES .scroll-card.gradient-3 .service-img,
    #PACKAGES .scroll-card.gradient-5 .service-img {
        margin-left: 10px;
    }
    #PACKAGES .scroll-card.gradient-1 .title,
    #PACKAGES .scroll-card.gradient-2 .title,
    #PACKAGES .scroll-card.gradient-3 .title,
    #PACKAGES .scroll-card.gradient-5 .title {
        margin-left: 20px;
    }
}
@media (max-width: 768px) {
    .cases-section {
        padding: 2rem 1rem;
        transform: translate(-20px, -820px);
    }
    .cases-section h2 {
        font-size: 15px;
        margin-bottom: -15px;
        color: #888;
    }
    .cases-section span {
        color: #fff;
    }
    .case-thumbnails {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: -15px;
    }
    .case-thumb {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    .ipad-frame {
        width: 90vw;
        height: auto;
        border-radius: 20px;
        margin-bottom: -20px;
    }
    #ipad-image {
        margin-top: 0;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .dots {
        margin-top: 10px;
        gap: 0.4rem;
        transform: translateY(-30px);
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .case-description {
        margin-top: 0;
        font-size: 0.9rem;
        line-height: 1.4;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .case-title {
        order: 1;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 5px;
        text-align: center;
        margin-left: 50px;
        margin-right: 50px;
    }
    .case-text {
        order: 2;
        transform: translateY(-10px);
        font-size: 0.85rem;
        color: #ccc;
        text-align: center;
        font-family: sans-serif;
    }
}
@media (max-width: 768px) {
    .why-us-section {
        padding: 2rem 1rem;
        transform: translateY(-1100px);
    }
    .section-title {
        font-size: 15px;
        margin-top: 40px;
        margin-bottom: 2.5rem;
    }
    .cards-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 20px;
    }
    .glow-card:nth-child(1) p {
        font-size: 8px;
        transform: translateY(5px);
    }
    .glow-card {
        padding: 1.2rem;
        border-radius: 10px;
        background: #1b1b1b50;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        text-align: left;
    }
    .card-icon1 {
        width: 30px;
        transform: translateY(4px);
        flex-shrink: 0;
    }
    .card-icon1:nth-child(1),
    .card-icon1:nth-child(5) {
        transform: translateY(8px);
    }
    .glow-card:nth-child(6) img {
        transform: translateY(5px);
    }
    .glow-card h3 {
        font-size: 10px;
        margin-bottom: 0.2rem;
        transform: translateY(-4px);
    }
    .glow-card p {
        font-size: 8px;
        line-height: 1.3;
        margin: 0;
        transform: translateY(5px);
    }
}
@media (max-width: 768px) {
    .three-D-form {
        padding: 20px 10px;
    }
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 0 auto 40px;
        width: 100%;
    }
    model-viewer {
        width: 100%;
        height: 100px;
        margin: 40px auto 0 auto;
        display: block;
    }
    .form-wrapper {
        flex: none;
        min-width: unset;
        max-width: 280px;
        width: 100%;
        padding: 15px;
        margin: 0 auto;
    }
    .form-wrapper h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .form-wrapper form {
        gap: 12px;
    }
    .form-wrapper label {
        font-size: 10px;
        font-family: sans-serif;
    }
    .form-wrapper input,
    .form-wrapper select {
        padding: 10px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    .form-wrapper button {
        padding: 10px;
        font-size: 0.9rem;
        margin-top: 8px;
    }
    .g-recaptcha {
        margin: 0 auto;
        transform: scale(0.8);
        transform: translateX(-10px);
    }
    .content-wrapper-text h2 {
        margin-top: -1400px;
        margin-bottom: 15px;
        font-size: 15px;
    }
    .content-wrapper-text span {
        color: #9e9e9e;
    }
    .contact-form-section,
    .contact-form-section2 {
        font-family: sans-serif;
    }
}
@media (max-width: 768px) {
    .three-D-form .content-wrapper {
        flex-direction: column;
    }
    .three-D-form .form-wrapper {
        order: 1;
    }
    .three-D-form model-viewer {
        order: 2;
        width: 100%;
        height: 300px;
        margin: 20px auto 0 auto;
    }
}
@media (max-width: 768px) {
    .text-block {
        padding: 20px;
        margin: 0 12px 25px;
        border-radius: 16px;
        background: rgb(23 23 23 / 0.15);
        border-left: 3px solid rgb(255 157 0 / 0.5);
        line-height: 1.7;
        font-size: 15px;
        backdrop-filter: blur(18px) saturate(130%);
        -webkit-backdrop-filter: blur(18px) saturate(130%);
    }
    .text-block h3 {
        font-size: 1.4rem;
        margin-bottom: 16px;
        color: #f5f5f5;
        text-shadow: 0 0 5px rgb(255 255 255 / 0.3);
    }
    .text-block p {
        font-size: 14px;
        margin-bottom: 14px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgb(255 255 255 / 0.05);
    }
    .text-block p:last-child {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    .legal-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: calc(100% - 28px);
        max-width: 420px;
        margin: 16px auto;
        padding: 6px;
        box-sizing: border-box;
        align-items: center;
        justify-items: stretch;
        pointer-events: auto;
    }
    .toggle-btn,
    .static-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 1px 1px;
        border-radius: 1px;
        font-family: "Unbounded", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.4px;
        text-decoration: none;
        cursor: pointer;
        box-sizing: border-box;
        transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
        -webkit-tap-highlight-color: #fff0;
        user-select: none;
    }
    .toggle-btn {
        background: rgb(86 86 86 / 0.661);
        color: #fff;
        border: 1px solid rgb(255 255 255 / 0.06);
    }
    .static-link {
        background: rgb(86 86 86 / 0.661);
        color: #f1f1f1;
        border: 1px solid rgb(255 255 255 / 0.06);
        box-shadow: 0 6px 18px rgb(0 0 0 / 0.45), inset 0 -2px 6px rgb(255 255 255 / 0.02);
    }
    .toggle-btn:hover,
    .static-link:hover {
        transform: translateY(-4px);
    }
    .toggle-btn:active,
    .static-link:active {
        transform: translateY(-1px) scale(0.998);
    }
    .toggle-btn:focus,
    .static-link:focus {
        outline: 3px solid rgb(250 250 250 / 0.18);
        outline-offset: 3px;
    }
    .toggle-btn > .emoji,
    .static-link > .emoji {
        font-size: 18px;
        line-height: 1;
        display: inline-block;
        transform: translateY(-1px);
    }
    @media (max-width: 420px) {
        .legal-buttons {
            grid-template-columns: 1fr;
            gap: 12px;
            width: calc(100% - 24px);
            padding: 0 12px;
        }
        .toggle-btn,
        .static-link {
            padding: 14px 12px;
            border-radius: 8px;
            font-size: 14px;
        }
    }
}
#scrollUpBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-size: 20px;
    background: linear-gradient(135deg, #ff9d0000, #ff510000);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#scrollUpBtn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    #scrollUpBtn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        font-size: 20px;
        background: linear-gradient(135deg, #ff9d0000, #ff510000);
        color: #fff;
        border: none;
        border-radius: 50%;
        padding: 12px;
        cursor: pointer;
        display: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    #scrollUpBtn:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 1000;
}
.skip-link:focus {
    top: 10px;
}
.typing-js {
    display: inline-block;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.5px;
}
.typing-js::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    background: currentColor;
    margin-left: 6px;
    vertical-align: -0.15em;
    animation: caretBlink 1s steps(1, end) infinite;
}
.typing-js.typed::after {
    animation: none;
    opacity: 0;
}
@keyframes caretBlink {
    0%,
    50% {
        opacity: 1;
    }
    50.01%,
    100% {
        opacity: 0;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.lol-text span {
    color: #9e9e9e;
}
.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgb(23 23 23 / 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgb(255 157 0 / 0.4);
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    width: 90%;
    font-family: "Unbounded", sans-serif;
    color: #e8f7ff;
    box-shadow: 0 10px 40px rgb(0 0 0 / 0.6);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}
.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.cookie-icon {
    width: 60px;
    height: 60px;
}
.cookie-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #ff9d00;
}
.cookie-text p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
}
.cookie-btn {
    background: linear-gradient(135deg, #ff9d00, #ff7b00);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgb(255 157 0 / 0.8);
}
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10000;
}
.cookie-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.instagram-profile {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #0000;
    color: #fff;
    padding: 40px;
    font-family: "Unbounded", sans-serif;
    margin-top: -500px;
}
.insta-left {
    max-width: 350px;
}
.insta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin-bottom: 10px;
}
.insta-username {
    font-size: 18px;
    margin-bottom: 20px;
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 8px;
}
.insta-grid img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.insta-middle {
    flex: 1;
    max-width: 250px;
}
.insta-middle p {
    margin: 5px 0;
}
.insta-middle a {
    color: #fff;
    text-decoration: none;
}
.insta-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.insta-icons img {
    width: 20px;
    height: 20px;
}
.insta-right ul {
    list-style: none;
    padding: 0;
}
.insta-right li {
    margin-bottom: 8px;
}
.insta-right a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.insta-right a:hover {
    text-decoration: underline;
}
