:root {
    --navy: #0d1234;
    --navy-2: #080b24;
    --blue: #3564ef;
    --blue-2: #1e4fd7;
    --cyan: #35e1d0;
    --violet: #7459ff;
    --text: #151b36;
    --muted: #6f7691;
    --soft: #f4f7fb;
    --line: rgba(23, 34, 82, 0.1);
    --shadow: 0 26px 70px rgba(27, 39, 96, 0.14);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff, #fbfcff 48%, #f7f9ff 100%);
    overflow-x: hidden;
}
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.35;
    animation: pageFloatSoft 8s ease-in-out infinite;
}
body::before {
    width: 260px;
    height: 260px;
    left: -70px;
    top: 20%;
    background: rgba(53, 100, 239, 0.12);
}
body::after {
    width: 300px;
    height: 300px;
    right: -90px;
    top: 55%;
    background: rgba(116, 89, 255, 0.12);
    animation-delay: -3s;
}
body.menu-open {
    overflow: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font: inherit;
}
img {
    display: block;
    max-width: 100%;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    z-index: 9999;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    box-shadow: 0 0 20px rgba(53, 100, 239, 0.55);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(53, 100, 239, 0.48);
    transition: 0.2s;
}
.cursor-ring.active {
    width: 56px;
    height: 56px;
    border-color: var(--cyan);
}

.topbar {
    background: var(--navy-2);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
}
.topbar-inner {
    width: min(1180px, 100%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.topbar-info {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar span {
    color: rgba(255, 255, 255, 0.72);
}

.site-header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: 0.35s ease;
}
.site-header.scrolled {
    top: 0;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(15, 23, 70, 0.08);
}
.nav-shell {
    width: min(1180px, calc(100% - 36px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 55px rgba(9, 18, 70, 0.12);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 800 19px Manrope;
    color: var(--navy);
    letter-spacing: -0.03em;
}
.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 14px;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 25px rgba(53, 100, 239, 0.3);
    transform: rotate(-7deg);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.desktop-nav a {
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #35405e;
    transition: 0.25s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    transform: translateY(-2px);
}
.quote-btn {
    padding: 12px 18px;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 12px 26px rgba(53, 100, 239, 0.28);
}
.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    position: relative;
    cursor: pointer;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 30, 0.52);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}
.mobile-drawer {
    position: absolute;
    left: 0;
    top: 0;
    width: min(88vw, 360px);
    height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, #fff, #f3f6ff);
    box-shadow: 30px 0 80px rgba(7, 14, 50, 0.25);
    transform: translateX(-105%);
    transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mobile-overlay.show .mobile-drawer {
    transform: none;
}
.mobile-drawer .brand {
    margin-bottom: 34px;
}
.mobile-links {
    display: grid;
    gap: 10px;
}
.mobile-links a {
    padding: 15px 16px;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--line);
    font-weight: 700;
    transform: translateX(-18px);
    opacity: 0;
    transition: 0.35s;
}

.mobile-overlay.show .mobile-links a {
    transform: none;
    opacity: 1;
}
.mobile-overlay.show .mobile-links a:nth-child(2) {
    transition-delay: 0.05s;
}
.mobile-overlay.show .mobile-links a:nth-child(3) {
    transition-delay: 0.1s;
}
.mobile-overlay.show .mobile-links a:nth-child(4) {
    transition-delay: 0.15s;
}
.mobile-overlay.show .mobile-links a:nth-child(5) {
    transition-delay: 0.2s;
}
.mobile-overlay.show .mobile-links a:nth-child(6) {
    transition-delay: 0.25s;
}

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: var(--navy-2);
}
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
    background-size: cover;
    background-position: center center;
    transform: scale(1.06) translateX(0);
    will-change: transform, opacity;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 14, 48, 0.94),
        rgba(14, 23, 72, 0.78)
    );
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-slide.anim-next {
    animation: heroBgInRight 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slide.anim-prev {
    animation: heroBgInLeft 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes heroBgInRight {
    from {
        opacity: 0;
        transform: translateX(9%) scale(1.1);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
@keyframes heroBgInLeft {
    from {
        opacity: 0;
        transform: translateX(-9%) scale(1.1);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}
.hero-slide:nth-child(1) {
    background-image: url("/assets/images/index/about-image1.jpg");
}
.hero-slide:nth-child(2) {
    background-image: url("/assets/images/index/about-image2.jpg");
}
.hero-slide:nth-child(3) {
    background-image: url("/assets/images/index/about-image3.jpg");
}
.hero-content-wrap {
    min-height: 720px;
    padding: 190px 20px 90px;
    display: grid;
    align-items: center;
    position: relative;
    z-index: 3;
}
.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: 0.3s;
}
.hero-dot.active {
    width: 30px;
    border-radius: 999px;
    background: var(--blue);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 26px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.hero-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
}
.hero-prev {
    left: 24px;
}
.hero-next {
    right: 24px;
}
.hero-copy-slide {
    display: none;
}
.hero-copy-slide.active {
    display: block;
    animation: heroTextIn 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
.hero-copy-slide.side-animate-next {
    animation: heroSideInNext 1.05s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-copy-slide.side-animate-prev {
    animation: heroSideInPrev 1.05s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes heroSideInNext {
    from {
        opacity: 0;
        transform: translateX(85px) translateY(18px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
@keyframes heroSideInPrev {
    from {
        opacity: 0;
        transform: translateX(-85px) translateY(18px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
.hero-copy-slide.active .hero-label {
    animation: premiumFadeUp 0.7s ease 0.08s both;
}
.hero-copy-slide.active h1 {
    animation:
        premiumFadeUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both,
        premiumGlow 4.8s ease-in-out infinite 1.1s;
}
.hero-copy-slide.active h2 {
    animation:
        premiumFadeUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.18s both,
        premiumGlow 4.8s ease-in-out infinite 1.1s;
}
.hero-copy-slide.active p {
    animation: premiumFadeUp 0.95s ease 0.32s both;
}
.hero-copy-slide.active .hero-actions {
    animation: premiumFadeUp 0.95s ease 0.46s both;
}
@keyframes premiumFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}
@keyframes premiumGlow {
    0%,
    100% {
        text-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        text-shadow:
            0 10px 30px rgba(165, 248, 239, 0.18),
            0 0 40px rgba(197, 185, 255, 0.15);
    }
}
@keyframes heroFloatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
@keyframes heroFloatYSmall {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes heroFlipInRight {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateY(-32deg) translateX(70px)
            scale(0.94);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateY(0) translateX(0) scale(1);
    }
}
@keyframes heroFlipInLeft {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateY(32deg) translateX(-70px)
            scale(0.94);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateY(0) translateX(0) scale(1);
    }
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent);
    animation: gridMove 18s linear infinite;
}
@keyframes gridMove {
    to {
        background-position: 58px 58px;
    }
}
.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(25px);
    background: radial-gradient(
        circle,
        rgba(53, 225, 208, 0.2),
        transparent 68%
    );
    left: -180px;
    top: 40px;
    animation: floatGlow 8s ease-in-out infinite alternate;
}
.hero-glow.two {
    left: auto;
    right: -160px;
    top: 120px;
    background: radial-gradient(
        circle,
        rgba(116, 89, 255, 0.27),
        transparent 68%
    );
    animation-delay: -4s;
}
@keyframes floatGlow {
    to {
        transform: translate3d(70px, 45px, 0) scale(1.14);
    }
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
    animation: particle 8s ease-in-out infinite;
}
.particle:nth-of-type(1) {
    width: 8px;
    height: 8px;
    left: 12%;
    top: 33%;
}
.particle:nth-of-type(2) {
    width: 12px;
    height: 12px;
    left: 82%;
    top: 24%;
    animation-delay: -2s;
}
.particle:nth-of-type(3) {
    width: 6px;
    height: 6px;
    left: 66%;
    top: 68%;
    animation-delay: -4s;
}
.particle:nth-of-type(4) {
    width: 10px;
    height: 10px;
    left: 32%;
    top: 76%;
    animation-delay: -6s;
}
@keyframes particle {
    50% {
        transform: translateY(-35px) translateX(18px);
        opacity: 0.35;
    }
}
.hero-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.75;
}
.hero-shape-left {
    left: -85px;
    top: 145px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    transform: rotate(45deg);
    animation: heroFloatY 5.4s ease-in-out infinite;
}
.hero-shape-right {
    right: -42px;
    bottom: 62px;
    width: 280px;
    height: 220px;
    border-radius: 80px;
    background: linear-gradient(
        135deg,
        rgba(53, 100, 239, 0.95),
        rgba(30, 79, 215, 0.82)
    );
    box-shadow: 0 20px 60px rgba(53, 100, 239, 0.3);
    animation: heroFloatYSmall 4.6s ease-in-out infinite;
}

.hero-inner {
    width: min(1180px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    color: white;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero h1 {
    font: 800 clamp(48px, 7vw, 78px)/1 Manrope;
    margin: 22px 0 16px;
    letter-spacing: -0.055em;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #dffcf8 24%,
        #ffffff 48%,
        #d3cbff 72%,
        #ffffff 100%
    );
    background-size: 260% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 6.5s linear infinite;
    position: relative;
}
.hero h2 {
    font: 800 clamp(48px, 7vw, 78px)/1 Manrope;
    margin: 22px 0 16px;
    letter-spacing: -0.055em;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #dffcf8 24%,
        #ffffff 48%,
        #d3cbff 72%,
        #ffffff 100%
    );
    background-size: 260% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 6.5s linear infinite;
    position: relative;
}
@keyframes shine {
    to {
        background-position: 250% center;
    }
}
.hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-content p {
    font-size: 18px;
    max-width: 690px;
}
.hero-label {
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.08);
}
.primary-btn,
.secondary-btn {
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.primary-btn {
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 16px 34px rgba(53, 100, 239, 0.3);
}
.secondary-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}
.hero-visual {
    perspective: 1200px;
    position: relative;
    animation: heroFloatY 5s ease-in-out infinite;
}
.hero-visual::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -18px;
    top: -18px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(53, 100, 239, 0.75),
        rgba(116, 89, 255, 0.45)
    );
    filter: blur(2px);
    opacity: 0.75;
    animation: heroFloatYSmall 4.2s ease-in-out infinite;
}
.hero-visual::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    left: -16px;
    bottom: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    animation: heroFloatYSmall 4s ease-in-out infinite reverse;
}
.hero-card {
    height: 420px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform-style: preserve-3d;
    transition:
        transform 0.6s ease,
        box-shadow 0.4s ease;
    animation: heroFlipInRight 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-card.flip-animate-next {
    animation: heroFlipInRight 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-card.flip-animate-prev {
    animation: heroFlipInLeft 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-card:hover {
    transform: perspective(1200px) rotateY(10deg) rotateX(5deg)
        translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.hero-card:hover img {
    transform: scale(1.06) rotate(1deg);
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 9, 35, 0.45), transparent 55%);
}
.hero-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: heroFloatYSmall 4s ease-in-out infinite;
}
.hero-badge strong {
    display: block;
    font: 800 18px Manrope;
}
.hero-badge span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.section {
    padding: 95px 20px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section::after {
    content: "";
    position: absolute;
    inset: auto auto -140px -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.08),
        transparent 68%
    );
    filter: blur(10px);
    z-index: 0;
    animation: pageFloatSoft 8s ease-in-out infinite;
}
.section:nth-of-type(even)::after {
    left: auto;
    right: -120px;
    bottom: -120px;
    background: radial-gradient(
        circle,
        rgba(116, 89, 255, 0.08),
        transparent 68%
    );
}
.section.soft {
    background: #f3f6fb;
}
.section.dark {
    background: var(--navy-2);
    color: white;
}
.section.dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridMove 22s linear infinite;
}
.container {
    width: min(1180px, 100%);
    margin: auto;
    position: relative;
    z-index: 2;
}
.section > .container {
    padding: 42px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95),
        rgba(248, 250, 255, 0.94)
    );
    border: 1px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(12, 20, 60, 0.11);
    backdrop-filter: blur(14px);
}
.section > .container::before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    right: -110px;
    top: -120px;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.16),
        transparent 68%
    );
    animation: pageFloatSoft 8s ease-in-out infinite;
    z-index: 0;
}
.section > .container::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    border-radius: 38px;
    background: linear-gradient(
        135deg,
        rgba(53, 225, 208, 0.12),
        rgba(116, 89, 255, 0.08)
    );
    transform: rotate(24deg);
    z-index: 0;
}
.section.dark > .container {
    background: linear-gradient(145deg, var(--navy), #18245d 62%, #312071);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 90px rgba(8, 15, 50, 0.25);
}
.section.dark > .container::before {
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.4),
        transparent 68%
    );
}
.section.dark > .container::after {
    background: linear-gradient(
        135deg,
        rgba(53, 225, 208, 0.18),
        rgba(116, 89, 255, 0.14)
    );
}
.section > .container > * {
    position: relative;
    z-index: 2;
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
    position: relative;
}
.section-head span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(53, 100, 239, 0.08);
    box-shadow: 0 8px 20px rgba(53, 100, 239, 0.08);
}
.section-head h2 {
    font: 800 clamp(35px, 5vw, 56px)/1.05 Manrope;
    letter-spacing: -0.05em;
    margin: 16px auto 18px;
    position: relative;
    display: inline-block;
}
.section-head h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
    background-size: 200% 100%;
    animation: borderFlow 5s linear infinite;
    box-shadow: 0 8px 20px rgba(53, 100, 239, 0.2);
}
.section-head p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 18px;
}
.dark .section-head span {
    color: #dbe6ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}
.dark .section-head h2 {
    color: white;
}
.dark .section-head p {
    color: rgba(255, 255, 255, 0.68);
}
.about-copy > span:first-of-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(53, 100, 239, 0.08) !important;
    box-shadow: 0 8px 20px rgba(53, 100, 239, 0.08);
    margin-bottom: 8px;
}
.dark .about-copy > span:first-of-type {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #dbe6ff !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    min-height: 280px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(29, 42, 96, 0.08);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: 0.45s;
    backdrop-filter: blur(12px);
}
.service-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(53, 100, 239, 0.16),
        rgba(53, 225, 208, 0.06),
        rgba(116, 89, 255, 0.14)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.75;
}
.service-card.featured {
    background: linear-gradient(145deg, var(--blue), var(--blue-2));
    color: white;
}
.service-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -80px;
    top: -80px;
    border: 1px solid rgba(53, 100, 239, 0.12);
    box-shadow:
        0 0 0 20px rgba(53, 100, 239, 0.04),
        0 0 0 40px rgba(53, 100, 239, 0.03);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(29, 42, 96, 0.14);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: #edf2ff;
    color: var(--blue);
    margin-bottom: 20px;
    transition: 0.6s;
}
.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.08);
}
.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}
.service-card h3 {
    font: 800 19px Manrope;
    margin: 0 0 12px;
}
.service-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}
.featured p {
    color: rgba(255, 255, 255, 0.75);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}
.about-copy {
    padding: 8px 0 8px 6px;
}
.about-visual {
    position: relative;
    min-height: 430px;
}
.about-visual img.main {
    width: 74%;
    height: 400px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.about-visual img.small {
    width: 46%;
    height: 220px;
    object-fit: cover;
    border-radius: 22px;
    position: absolute;
    right: 0;
    bottom: 10px;
    border: 8px solid white;
    box-shadow: 0 22px 60px rgba(31, 45, 104, 0.18);
}
.play-btn {
    position: absolute;
    right: 18%;
    bottom: 90px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 0 0 12px rgba(53, 100, 239, 0.14);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    50% {
        box-shadow: 0 0 0 22px rgba(53, 100, 239, 0);
    }
}
.about-copy h2 {
    font: 800 clamp(34px, 5vw, 54px)/1.05 Manrope;
    letter-spacing: -0.05em;
    margin: 10px 0 16px;
}
.about-copy p {
    color: var(--muted);
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
.about-feature {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 35px rgba(29, 42, 96, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}
.about-feature::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.14),
        transparent 70%
    );
}
.about-feature strong {
    display: block;
    font: 800 16px Manrope;
    margin-bottom: 6px;
}
.about-feature span {
    font-size: 12px;
    color: var(--muted);
}

.stats-wrap {
    margin-top: 70px;
    background: linear-gradient(145deg, var(--navy), #18245d 62%, #312071);
    color: white;
    border-radius: 32px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    box-shadow: 0 28px 65px rgba(8, 15, 50, 0.24);
    position: relative;
    overflow: hidden;
}
.stats-wrap::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.36),
        transparent 68%
    );
}
.stat {
    text-align: center;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.stat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.14) 50%,
        transparent 80%
    );
    transform: translateX(-120%);
    animation: statShine 5.2s linear infinite;
}
.stat strong {
    font: 800 34px Manrope;
    display: block;
}
.stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
}

.platforms {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 32px;
}
.platform-card {
    padding: 20px 14px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.42s;
    transform-style: preserve-3d;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}
.platform-card::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -30%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(53, 225, 208, 0.18),
        transparent 70%
    );
}
.platform-card:hover {
    transform: perspective(700px) rotateX(7deg) rotateY(-7deg) translateY(-7px);
    background: rgba(255, 255, 255, 0.09);
}
.platform-card i {
    font-style: normal;
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}
.platform-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.process-card {
    text-align: center;
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 45px rgba(29, 42, 96, 0.06);
    backdrop-filter: blur(8px);
}
.process-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.process-card:hover .process-image img {
    transform: scale(1.08) rotate(2deg);
}
.process-no {
    position: absolute;
    left: -12px;
    top: -12px;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(53, 100, 239, 0.3);
}
.process-card h3 {
    font: 800 18px Manrope;
    margin: 0 0 10px;
}
.process-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.testimonial-slider-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 34px;
    align-items: stretch;
}
.testimonial-intro {
    padding: 34px;
    border-radius: 26px;
    background: linear-gradient(145deg, var(--navy), #18245d);
    color: white;
    position: relative;
    overflow: hidden;
}
.testimonial-intro::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    right: -90px;
    bottom: -90px;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.34),
        transparent 68%
    );
}
.testimonial-intro h2 {
    font: 800 38px/1.08 Manrope;
    margin: 10px 0 14px;
    position: relative;
    z-index: 2;
}
.testimonial-intro p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
    position: relative;
    z-index: 2;
}
.testimonial-controls {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}
.testimonial-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s;
}
.testimonial-arrow:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px);
}
.testimonial-viewport {
    overflow: hidden;
    border-radius: 24px;
}
.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: 320px;
    padding: 28px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(29, 42, 96, 0.08);
    transition: 0.35s;
    transform-style: preserve-3d;
}
.testimonial-card:hover {
    transform: perspective(800px) rotateX(5deg) rotateY(-5deg) translateY(-6px);
}
.testimonial-quote {
    font-size: 34px;
    line-height: 1;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 8px;
}
.testimonial-card strong {
    font: 800 17px Manrope;
    display: block;
}
.testimonial-card small {
    color: var(--muted);
}
.testimonial-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0 24px;
}
.stars {
    color: #3564ef;
    letter-spacing: 2px;
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #cbd3ea;
    cursor: pointer;
    transition: 0.3s;
}
.testimonial-dot.active {
    width: 24px;
    border-radius: 999px;
    background: var(--blue);
}

footer {
    background: var(--navy-2);
    color: white;
    padding: 70px 20px 26px;
    position: relative;
    overflow: hidden;
}
.footer-grid {
    width: min(1160px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.8fr 1.2fr;
    gap: 46px;
}
footer h4 {
    font: 700 16px Manrope;
    margin: 0 0 20px;
}
footer p,
footer a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.9;
}
footer a {
    display: block;
    transition: 0.2s;
}
footer a:hover {
    color: white;
    transform: translateX(4px);
}
.footer-bottom {
    width: min(1160px, 100%);
    margin: 46px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}
.footer-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transition: width 0.2s;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 16px 35px rgba(53, 100, 239, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: 0.3s;
    z-index: 900;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.reveal {
    opacity: 0;
    filter: blur(10px);
    transition:
        opacity 0.95s ease,
        transform 0.95s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.95s;
    will-change: transform, opacity;
}
.reveal-left {
    transform: translateX(-90px);
}
.reveal-right {
    transform: translateX(90px);
}
.reveal-up {
    transform: translateY(80px);
}
.reveal-zoom {
    transform: scale(0.84);
}
.reveal.show {
    opacity: 1;
    filter: none;
    transform: none;
}
.stagger > * {
    opacity: 0;
    transform: translateY(34px);
    transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}
.stagger.show > * {
    opacity: 1;
    transform: none;
}
.stagger.show > *:nth-child(2) {
    transition-delay: 0.08s;
}
.stagger.show > *:nth-child(3) {
    transition-delay: 0.16s;
}
.stagger.show > *:nth-child(4) {
    transition-delay: 0.24s;
}
.stagger.show > *:nth-child(5) {
    transition-delay: 0.32s;
}
.stagger.show > *:nth-child(6) {
    transition-delay: 0.4s;
}
.magnetic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease;
}

/* Full-page premium floating motion */
@keyframes pageFloatA {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes pageFloatB {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(9px);
    }
}
@keyframes pageFloatSoft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}
@keyframes softPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
@keyframes statShine {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(140%);
    }
}

.section:not(.dark) {
    background-image:
        radial-gradient(
            circle at 8% 15%,
            rgba(53, 100, 239, 0.055),
            transparent 23%
        ),
        radial-gradient(
            circle at 92% 76%,
            rgba(116, 89, 255, 0.05),
            transparent 22%
        );
}
.section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -130px;
    top: 18%;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.13),
        transparent 68%
    );
    filter: blur(10px);
    pointer-events: none;
    animation: pageFloatA 7s ease-in-out infinite;
}
.section:nth-of-type(even)::after {
    left: -130px;
    right: auto;
    animation: pageFloatB 8s ease-in-out infinite;
}
.section-head {
    position: relative;
}
.section-head::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin: 18px auto 0;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--blue),
        var(--violet),
        var(--cyan)
    );
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
}
.section-head h2 {
    background: linear-gradient(90deg, var(--text), #243a83, var(--text));
    background-size: 220% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 9s linear infinite;
}
.section.dark .section-head h2 {
    background: linear-gradient(90deg, #fff, #b8c7ff, #fff);
    background-size: 220% auto;
    -webkit-background-clip: text;
    color: transparent;
}

.service-card,
.about-feature,
.platform-card,
.process-card,
.testimonial-card,
.stat,
.security-item {
    will-change: transform;
}
.service-card:nth-child(odd),
.about-feature:nth-child(odd),
.platform-card:nth-child(odd),
.process-card:nth-child(odd),
.testimonial-card:nth-child(odd),
.stat:nth-child(odd) {
    animation: pageFloatA 5.8s ease-in-out infinite;
}
.service-card:nth-child(even),
.about-feature:nth-child(even),
.platform-card:nth-child(even),
.process-card:nth-child(even),
.testimonial-card:nth-child(even),
.stat:nth-child(even) {
    animation: pageFloatB 6.4s ease-in-out infinite;
}
.service-card:nth-child(2),
.platform-card:nth-child(2),
.testimonial-card:nth-child(2) {
    animation-delay: -1.3s;
}
.service-card:nth-child(3),
.platform-card:nth-child(3),
.testimonial-card:nth-child(3) {
    animation-delay: -2.1s;
}
.service-card:nth-child(4),
.platform-card:nth-child(4) {
    animation-delay: -0.8s;
}
.service-card:nth-child(5),
.platform-card:nth-child(5) {
    animation-delay: -2.8s;
}
.service-card:nth-child(6),
.platform-card:nth-child(6) {
    animation-delay: -1.7s;
}
.service-card:hover,
.about-feature:hover,
.platform-card:hover,
.process-card:hover,
.testimonial-card:hover,
.stat:hover {
    animation-play-state: paused;
}

.about-visual img.main {
    animation: pageFloatA 6.5s ease-in-out infinite;
}
.about-visual img.small {
    animation: pageFloatB 5.7s ease-in-out infinite;
}
.play-btn {
    animation:
        pulse 2.2s infinite,
        pageFloatSoft 4.6s ease-in-out infinite;
}
.process-image {
    animation: pageFloatSoft 5.4s ease-in-out infinite;
}
.process-card:nth-child(2) .process-image {
    animation-delay: -1.5s;
}
.process-card:nth-child(3) .process-image {
    animation-delay: -2.6s;
}

.service-card,
.testimonial-card,
.about-feature,
.process-card {
    border-color: rgba(53, 100, 239, 0.13);
    background-image: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98),
        rgba(247, 249, 255, 0.9)
    );
}
.service-card::after,
.testimonial-card::after,
.about-feature::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(53, 100, 239, 0.32),
        rgba(53, 225, 208, 0.24),
        transparent
    );
    background-size: 240% 100%;
    animation: borderFlow 5s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.about-feature {
    position: relative;
    overflow: hidden;
    transition: 0.35s;
}
.about-feature:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 48px rgba(30, 48, 110, 0.12);
}
.stats-wrap {
    position: relative;
    overflow: hidden;
}
.stats-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 20%,
        rgba(255, 255, 255, 0.12) 42%,
        transparent 62%
    );
    transform: translateX(-120%);
    animation: statShine 6s ease-in-out infinite;
}
@keyframes statShine {
    55%,
    100% {
        transform: translateX(130%);
    }
}
.testimonial-slider-wrap {
    position: relative;
}
.testimonial-slider-wrap::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    left: -65px;
    bottom: -60px;
    background: radial-gradient(
        circle,
        rgba(53, 100, 239, 0.14),
        transparent 68%
    );
    animation: softPulse 5s ease-in-out infinite;
    pointer-events: none;
}
.footer-grid > div:nth-child(odd) {
    animation: pageFloatA 7s ease-in-out infinite;
}
.footer-grid > div:nth-child(even) {
    animation: pageFloatB 7.6s ease-in-out infinite;
}

@media (hover: none), (pointer: coarse) {
    .service-card,
    .about-feature,
    .platform-card,
    .process-card,
    .testimonial-card,
    .stat,
    .footer-grid > div,
    .about-visual img.main,
    .about-visual img.small,
    .process-image {
        animation-duration: 8.5s;
    }
}

@media (max-width: 980px) {
    .topbar {
        display: none;
    }
    .site-header {
        top: 0;
    }
    .desktop-nav,
    .quote-btn {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .hero-inner,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        max-width: 700px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .platforms {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-slider-wrap {
        grid-template-columns: 1fr;
    }
    .testimonial-section-shell {
        padding: 30px;
    }
    .testimonial-card {
        flex-basis: calc((100% - 20px) / 2);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}
@media (max-width: 620px) {
    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    .hero-prev {
        left: 10px;
    }
    .hero-next {
        right: 10px;
    }
    .hero-slider-controls {
        bottom: 16px;
    }
    .site-header {
        padding: 10px 0;
    }
    .nav-shell {
        width: calc(100% - 20px);
        border-radius: 16px;
    }
    .hero,
    .hero-content-wrap {
        min-height: 680px;
    }
    .hero-content-wrap {
        padding: 135px 14px 70px;
    }
    .hero h1 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-card {
        height: 320px;
    }
    .hero-shape-left {
        width: 110px;
        height: 110px;
        left: -55px;
        top: 120px;
    }
    .hero-shape-right {
        width: 170px;
        height: 140px;
        right: -38px;
        bottom: 72px;
    }
    .hero h2 {
        font-size: 48px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-card {
        height: 320px;
    }
    .hero-shape-left {
        width: 110px;
        height: 110px;
        left: -55px;
        top: 120px;
    }
    .hero-shape-right {
        width: 170px;
        height: 140px;
        right: -38px;
        bottom: 72px;
    }
    .section {
        padding: 74px 14px;
    }
    .section > .container {
        padding: 24px;
        border-radius: 26px;
    }
    .services-grid,
    .stats-wrap,
    .platforms,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-section-shell {
        padding: 18px;
        border-radius: 26px;
    }
    .testimonial-intro {
        padding: 26px;
    }
    .testimonial-intro h2 {
        font-size: 32px;
    }
    .testimonial-summary {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        flex-basis: 100%;
        min-height: 330px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-visual {
        min-height: 360px;
    }
    .about-visual img.main {
        height: 330px;
    }
    .about-visual img.small {
        height: 170px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.service-card,
.process-card,
.about-feature,
.platform-card,
.stat,
.testimonial-card {
    border-radius: 26px;
}
.service-card h3,
.process-card h3,
.testimonial-card strong,
.about-feature strong {
    letter-spacing: -0.02em;
}
.service-card:hover,
.process-card:hover,
.about-feature:hover,
.platform-card:hover,
.stat:hover,
.testimonial-card:hover {
    box-shadow: 0 30px 70px rgba(20, 32, 82, 0.16);
}
.about-visual img.main,
.about-visual img.small,
.process-image {
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.hero-card,
.service-card,
.process-card,
.testimonial-card,
.platform-card,
.stat,
.about-feature {
    will-change: transform;
}

.testimonial-old-section > .container {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    backdrop-filter: none;
}
.testimonial-old-section > .container::before,
.testimonial-old-section > .container::after {
    display: none;
}

.touch-device .cursor-dot,
.touch-device .cursor-ring {
    display: none;
}
.touch-device .service-card:hover,
.touch-device .platform-card:hover,
.touch-device .testimonial-card:hover {
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
    .reveal,
    .stagger > * {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    .service-card,
    .about-feature,
    .platform-card,
    .process-card,
    .testimonial-card,
    .stat,
    .footer-grid > div,
    .about-visual img,
    .process-image,
    .section::after {
        animation: none !important;
        transform: none !important;
    }
}
