@import"https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap";

:root {
    --grid-size: 50px;
    --grid-color: rgba(0, 0, 0, .08);
    --background-color: #ffffff;
    --text-color: #000000;
    --particle-color: #000000;
    --primary-button-bg: #000000;
    --secondary-button-bg: #ffffff;
    --main-font: "Inter", sans-serif;
    --h1-size: 4rem;
    --h2-size: 2.25rem;
    --h3-size: 1.75rem;
    --h4-size: 1.35rem;
    --p-size: 1.1rem;
    --small-text: .9rem
}

::selection {
    color: var(--background-color);
    background-color: var(--primary-button-bg)
}

::-moz-selection {
    color: var(--background-color);
    background-color: var(--primary-button-bg)
}

.white::selection {
    background-color: var(--background-color);
    color: var(--primary-button-bg)
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--main-font)
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--main-font)
}

h1 {
    font-size: var(--h1-size);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1.5px
}

h2 {
    font-size: var(--h2-size);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1px
}

h3 {
    font-size: var(--h3-size);
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -.5px
}

h4 {
    font-size: var(--h4-size);
    line-height: 1.4;
    font-weight: 600
}

p {
    font-size: var(--p-size);
    line-height: 1.6;
    font-weight: 400;
    opacity: .8
}

@media(max-width:1200px) {
    :root {
        --h1-size: 3.5rem;
        --h2-size: 2rem;
        --h3-size: 1.6rem;
        --h4-size: 1.25rem;
        --p-size: 1rem
    }
}

@media(max-width:768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 1.75rem;
        --h3-size: 1.4rem;
        --h4-size: 1.15rem;
        --p-size: .95rem;
        --small-text: .85rem
    }

    h1 {
        letter-spacing: -1px
    }

    h2 {
        letter-spacing: -.5px
    }

    h3 {
        letter-spacing: -.3px
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px
}

@media(min-width:769px) {
    html {
        scroll-padding-top: 100px
    }
}

body.no-scroll {
    overflow: hidden
}

body::-webkit-scrollbar {
    display: none
}

body {
    scrollbar-width: none
}

body {
    -ms-overflow-style: none
}

section {
    padding: 100px 40px 60px !important
}

@media(max-width:768px) {
    section {
        padding: 40px 5px 30px !important
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
    font-family: var(--main-font, "Inter", sans-serif)
}

.main-header.scrolled {
    background: #ffffffb3;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 2px 10px #0000000d;
    padding: 5px 0;
}

.main-nav {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 clamp(40px, 5vw, 96px);
    gap: 40px;
}

.logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-color, #000);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    margin-right: auto;
}

.nav-links li a {
    color: var(--text-color, #000);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: .8;
    transition: opacity .3s ease
}

.nav-links li a:hover {
    opacity: 1
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.dropdown-icon {
    width: 10px;
    height: 10px;
    opacity: .6
}

.nav-cta {
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    transition: all .3s ease;
    border: 1.5px solid var(--primary-button-bg, #000)
}

.nav-cta.primary {
    background: var(--primary-button-bg, #000);
    color: #fff
}

.nav-cta.primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px)
}

.nav-cta.secondary {
    background: var(--secondary-button-bg, #fff);
    color: #000
}

.nav-cta.secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.sidebar-actions {
    display: none
}

.hamburger-menu-btn,
.close-menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000080;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
    z-index: 1001;
    pointer-events: none
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .3s ease, visibility 0s linear
}

.nav-links-header {
    display: none
}

@media(max-width:768px) {
    .nav-actions {
        position: relative;
        z-index: 1003
    }

    .main-nav {
        width: 100%;
        padding: 0 30px;
        gap: 20px
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100dvh;
        background-color: var(--background-color, #fff);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 100px 40px 10px;
        box-sizing: border-box;
        transform: translate(100%);
        transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .3s ease .1s, visibility 0s linear .4s;
        z-index: 1002;
        box-shadow: -5px 0 15px #0000001a;
        visibility: hidden;
        opacity: 0
    }

    .nav-links.active {
        transform: translate(0);
        visibility: visible;
        opacity: 1;
        transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .3s ease, visibility 0s linear
    }

    .nav-links li a {
        font-size: 1.3rem;
        opacity: 1;
        transform: translate(20px);
        transition: transform .3s ease, opacity .3s ease
    }

    .nav-links.active li a {
        transform: translate(0)
    }

    .nav-links.active li:nth-child(1) a {
        transition-delay: .1s
    }

    .nav-links.active li:nth-child(2) a {
        transition-delay: .15s
    }

    .nav-links.active li:nth-child(3) a {
        transition-delay: .2s
    }

    .nav-links.active li:nth-child(4) a {
        transition-delay: .25s
    }

    .nav-links.active li:nth-child(5) a {
        transition-delay: .3s
    }

    .nav-cta {
        display: none !important
    }

    .nav-links-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 15px;
        box-sizing: border-box
    }

    .close-menu-btn {
        display: block;
        color: var(--text-color, #000);
        font-size: 2.5rem;
        font-weight: 300
    }

    .hamburger-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 5px
    }

    .hamburger-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color, #000);
        border-radius: 3px;
        transition: all .3s ease-in-out
    }

    .main-header.menu-active .hamburger-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .main-header.menu-active .hamburger-menu-btn span:nth-child(2) {
        opacity: 0
    }

    .main-header.menu-active .hamburger-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .main-nav>.nav-actions .nav-cta {
        display: none
    }

    .sidebar-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: auto
    }

    .sidebar-actions .nav-cta {
        display: block !important;
        width: 100%;
        text-align: center
    }
}

.hero-grid-section {
    position: relative;
    height: 100dvh;
    width: 100%;
    background-color: var(--background-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-align: center;
    font-family: var(--main-font)
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: repeating-linear-gradient(to right, var(--grid-color) 0, var(--grid-color) 1px, transparent 1px, transparent var(--grid-size)), repeating-linear-gradient(to bottom, var(--grid-color) 0, var(--grid-color) 1px, transparent 1px, transparent var(--grid-size));
    background-size: var(--grid-size) var(--grid-size)
}

#grid-animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 4;
    padding: 20px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-content h1 {
    font-size: 4.2rem;
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.2 !important;
    letter-spacing: -1.5px;
    font-family: var(--main-font, "Inter", sans-serif)
}

#dynamic-text-wrapper {
    display: inline-block;
    vertical-align: baseline;
    transition: width .5s ease
}

#dynamic-text {
    display: inline-block;
    transition: transform .5s ease
}

.text-slide-down {
    animation: slideDown .5s ease forwards
}

.text-slide-up {
    animation: slideUp .5s ease forwards
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    to {
        transform: translateY(100%);
        opacity: 0
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.hero-content p {
    font-size: 1.1rem;
    margin: 0 0 40px;
    max-width: 550px;
    line-height: 1.7;
    opacity: .7;
    font-weight: 400;
    font-family: var(--main-font, "Inter", sans-serif)
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px
}

.cta-button {
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all .3s ease;
    border: 2px solid #000;
    white-space: nowrap;
    font-family: var(--main-font)
}

.cta-button.primary {
    background-color: var(--primary-button-bg);
    color: #fff
}

.cta-button.primary:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    transform: translateY(-2px)
}

.cta-button.secondary {
    background-color: var(--secondary-button-bg);
    color: #000
}

.cta-button.secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-weight: 800;
    margin: 0 0 10px
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    opacity: .7
}

@media(max-width:768px) {
    .section-title h2 {
        margin-bottom: 10px;
        letter-spacing: -.5px
    }

    .section-title p {
        padding: 0 15px;
        line-height: 1.5
    }
}

.portfolio-section {
    padding: 80px 0;
    font-family: system-ui, sans-serif;
    background-color: #f8f9fa
}

.portfolio-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

.portfolio-carousel-wrapper {
    position: relative;
    min-height: 250px
}

.portfolio-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.portfolio-carousel::-webkit-scrollbar {
    display: none
}

.portfolio-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    margin: 0 10px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px #00000012;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 200px
}

.card-image {
    width: 100%;
    height: 100%
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease
}

.portfolio-card:hover .card-image img {
    transform: scale(1.05)
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 100%);
    color: #fff;
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    transform: translateY(20px)
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0)
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px
}

.overlay-category {
    font-size: .9rem;
    opacity: .8
}

.carousel-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px #0000001a;
    transition: all .2s ease
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1)
}

.carousel-btn.prev {
    left: -25px
}

.carousel-btn.next {
    right: -25px
}

@media(min-width:768px) {
    .portfolio-card {
        flex-basis: calc(50% - 20px)
    }
}

@media(min-width:1024px) {
    .portfolio-card {
        flex-basis: calc(33.333% - 20px)
    }
}

@media(max-width:767px) {
    .carousel-btn {
        display: none
    }
}

.arc-services-asymmetric {
    padding: 80px 0;
    background-color: var(--background-color);
    font-family: var(--main-font);
    color: var(--text-color);
    overflow: hidden;
    min-height: 100dvh;
    transition: min-height .3s ease
}

.arc-services-asymmetric .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center
}

.arc-content-details {
    text-align: left
}

.arc-content-details h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 15px;
    transition: opacity .4s ease
}

.arc-content-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: .7;
    margin: 0 0 40px;
    min-height: 80px;
    transition: opacity .4s ease
}

.arc-content-details img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px -10px #00000026;
    transition: opacity .4s ease
}

.arc-fade-out {
    opacity: 0 !important
}

.arc-interactive-area {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px
}

.circle-container {
    position: absolute;
    top: 50%;
    right: -250px;
    width: 450px;
    height: 450px;
    transform: translateY(-50%);
    z-index: 5
}

.circle-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .3);
    transition: transform 1s cubic-bezier(.86, 0, .07, 1)
}

#arc-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.circle-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: 1px solid var(--grid-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .4s ease;
    transform: translate(-50%, -50%);
    z-index: 2
}

.circle-node:hover {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: var(--text-color)
}

.circle-node.selected {
    background-color: var(--text-color);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1)
}

.node-icon {
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    transition: transform 1s cubic-bezier(.86, 0, .07, 1)
}

@media(max-width:768px) {
    a.cta-button.primary[href="#services"] {
        width: 100%
    }

    .arc-services-asymmetric .container {
        grid-template-columns: 1fr;
        padding: 0
    }

    .arc-interactive-area,
    .arc-content-details h2,
    .arc-content-details p,
    .arc-content-details img {
        display: none
    }

    .arc-content-details {
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
        padding: 15px;
        transition: none;
        width: 100%;
        box-sizing: border-box
    }

    .arc-content-details.mobile-active {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important
    }

    .mobile-card-stack-wrapper {
        position: relative;
        width: 100%;
        max-width: 350px
    }

    .mobile-service-card {
        background-color: #fdfdfd;
        border-radius: 16px;
        text-align: left;
        overflow: hidden;
        box-shadow: 0 8px 25px #0000001f;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .4s ease;
        cursor: grab;
        -webkit-user-select: none;
        user-select: none;
        will-change: transform, opacity;
        transform-style: preserve-3d
    }

    .mobile-service-card.dragging {
        transition: none;
        cursor: grabbing;
        z-index: 1000
    }

    .mobile-service-card:nth-last-child(2) {
        transform: translateY(5px) scale(.98);
        opacity: .9
    }

    .mobile-service-card:nth-last-child(3) {
        transform: translateY(10px) scale(.96);
        opacity: .8
    }

    .mobile-service-card:nth-last-child(n+4) {
        transform: translateY(15px) scale(.94);
        opacity: 0
    }

    .mobile-service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        pointer-events: none
    }

    .mobile-card-content {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start
    }

    .mobile-card-content h3 {
        font-size: 1.2rem;
        margin: 0 0 6px;
        letter-spacing: -.3px;
        font-weight: 700
    }

    .mobile-card-content p {
        font-size: .9rem;
        opacity: .7;
        line-height: 1.5;
        margin: 0;
        flex-grow: 0
    }
}

@media(min-width:1200px) {
    .hero-content h1 {
        font-size: 4.5rem
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 600px
    }
}

@media(max-width:1199px)and (min-width:992px) {
    .hero-content h1 {
        font-size: 4rem
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 550px
    }
}

@media(max-width:991px)and (min-width:769px) {
    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: -1px
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 500px
    }

    .button-container {
        gap: 12px
    }

    .cta-button {
        padding: 10px 24px;
        font-size: .95rem
    }
}

@media(max-width:768px) {
    .hero-content {
        padding: 0
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -.5px;
        margin-bottom: 12px;
        line-height: 1.3
    }

    .hero-content p {
        font-size: .9rem;
        max-width: none;
        margin-bottom: 25px;
        padding: 0 10px
    }

    .button-container {
        flex-direction: row;
        gap: 10px;
        align-items: center
    }

    .cta-button {
        padding: 12px 32px;
        font-size: .9rem;
        text-align: center
    }
}

@media(max-width:480px) {
    .hero-grid-section {
        height: 50dvh;
        align-items: end;
        padding-bottom: 0 !important
    }

    .arc-services-asymmetric {
        min-height: 50dvh;
        padding: 0 !important
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3
    }

    .hero-content p {
        font-size: .9rem
    }

    .cta-button {
        padding: 10px 28px;
        font-size: .85rem
    }
}

@media(min-width:1200px) {
    .features-section {
        padding: 100px 0
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px
    }

    .feature-card {
        padding: 40px
    }

    .feature-card h3 {
        font-size: 1.4rem
    }

    .feature-card p {
        font-size: 1rem
    }
}

@media(max-width:1199px)and (min-width:992px) {
    .features-section {
        padding: 90px 0
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px
    }
}

@media(max-width:991px)and (min-width:769px) {
    .features-section {
        padding: 80px 0
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }

    .feature-card {
        padding: 25px
    }

    .feature-card h3 {
        font-size: 1.2rem
    }

    .feature-card p {
        font-size: .9rem
    }
}

@media(max-width:768px) {
    .features-section {
        padding: 60px 0
    }

    .features-section .container {
        padding: 0 15px
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px
    }

    .feature-card {
        padding: 24px 20px
    }

    .feature-icon {
        font-size: 2.5rem
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px
    }

    .feature-card p {
        font-size: .85rem;
        line-height: 1.6
    }
}

@media(max-width:480px) {
    .features-section {
        padding: 50px 0
    }

    .features-section .container {
        padding: 0 10px
    }

    .feature-card {
        padding: 20px 16px
    }

    .feature-icon {
        font-size: 2rem
    }

    .features-list li .feature-icon {
        width: 20px !important;
        height: 20px !important
    }

    .feature-card h3 {
        font-size: 1rem
    }

    .feature-card p {
        font-size: .8rem
    }
}

@media(min-width:1200px) {
    .portfolio-section {
        padding: 100px 0
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px
    }
}

@media(max-width:1199px)and (min-width:992px) {
    .portfolio-section {
        padding: 90px 0
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px
    }
}

@media(max-width:991px)and (min-width:769px) {
    .portfolio-section {
        padding: 80px 0
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
}

@media(max-width:768px) {
    .portfolio-section {
        padding: 60px 0
    }

    .portfolio-section .container {
        padding: 0 15px
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .portfolio-item {
        height: 250px
    }
}

@media(max-width:480px) {
    .portfolio-section {
        padding: 50px 0
    }

    .portfolio-section .container {
        padding: 0 10px
    }

    .portfolio-item {
        height: 200px
    }
}

.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: #fff;
    position: relative
}

.why-choose-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: .5
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.why-header h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px
}

.gradient-text {
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.why-header p {
    font-size: 1.1rem;
    opacity: .8;
    line-height: 1.7
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.reason-item {
    background: #ffffff0d;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeInUp .8s ease forwards;
    opacity: 0;
    transform: translateY(30px)
}

.reason-item:nth-child(1) {
    animation-delay: .1s
}

.reason-item:nth-child(2) {
    animation-delay: .2s
}

.reason-item:nth-child(3) {
    animation-delay: .3s
}

.reason-item:nth-child(4) {
    animation-delay: .4s
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0)
    }
}

@keyframes float {

    0%,
    to {
        transform: translateY(0)
    }

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

@keyframes glow {

    0%,
    to {
        box-shadow: 0 0 20px #ffffff1a
    }

    50% {
        box-shadow: 0 0 40px #fff3
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    to {
        background-position: 200% 0
    }
}

.reason-item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff26, #ffffff0d);
    opacity: 0;
    transition: all .6s ease;
    border-radius: 20px
}

.reason-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, .1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none
}

.reason-item:hover:before {
    opacity: 1
}

.reason-item:hover:after {
    opacity: 1
}

.reason-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #ffffff4d;
    box-shadow: 0 20px 60px #ffffff1a
}

.reason-number {
    font-size: 4rem;
    font-weight: 700;
    opacity: .2;
    margin-bottom: 24px;
    position: absolute;
    top: 20px;
    left: 32px;
    z-index: 1;
    transition: all .6s ease;
    background: linear-gradient(135deg, #fffc, #ffffff4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--main-font, "Inter", sans-serif)
}

.reason-item:hover .reason-number {
    opacity: .4;
    transform: scale(1.1) rotate(5deg)
}

.reason-content {
    position: relative;
    z-index: 3;
    padding-top: 60px
}

.reason-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    transition: all .4s ease
}

.reason-item:hover .reason-content h3 {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, .3)
}

.reason-content p {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .8;
    margin-bottom: 20px;
    transition: all .4s ease
}

.reason-item:hover .reason-content p {
    opacity: 1
}

.reason-icon {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 24px;
    opacity: .6;
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
    z-index: 3;
    color: #ffffffb3
}

.reason-item:hover .reason-icon {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, .4))
}

.reason-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all .8s ease;
    pointer-events: none;
    z-index: 1
}

.reason-item:hover .card-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: .8
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--main-font, "Inter", sans-serif)
}

.cta-content p {
    font-size: 1.1rem;
    opacity: .8;
    margin-bottom: 32px;
    font-family: var(--main-font, "Inter", sans-serif);
    line-height: 1.7
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all .3s ease;
    box-shadow: 0 8px 30px #fff3
}

.cta-button-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px #ffffff4d;
    animation: glow 1.5s ease-in-out infinite
}

.cta-button-new:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s
}

.cta-button-new:hover:before {
    left: 100%
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform .3s ease
}

.cta-button-new:hover .button-arrow {
    transform: translate(4px)
}

@media(min-width:1200px) {
    .about-intro {
        max-width: 1000px
    }

    .about-title {
        font-size: 4rem
    }

    .stats-showcase {
        max-width: 1200px
    }

    .why-header h2 {
        font-size: 3.5rem
    }
}

@media(max-width:1199px)and (min-width:992px) {
    .about-title {
        font-size: 3.2rem
    }

    .why-header h2 {
        font-size: 2.8rem
    }

    .stats-showcase {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
    }
}

@media(max-width:991px)and (min-width:769px) {
    .about-section-new {
        padding: 80px 0
    }

    .about-title {
        font-size: 2.8rem;
        letter-spacing: -1px
    }

    .about-description p {
        font-size: 1rem
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .stat-card {
        flex-direction: row;
        max-width: 500px;
        margin: 0 auto
    }

    .why-choose-section {
        padding: 100px 0
    }

    .why-header h2 {
        font-size: 2.5rem
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media(max-width:768px) {
    .about-section-new {
        padding: 60px 0
    }

    .about-intro {
        margin-bottom: 60px;
        padding: 0 15px
    }

    .about-title {
        font-size: 2.2rem;
        letter-spacing: -.5px;
        line-height: 1.3
    }

    .about-description p {
        font-size: .95rem;
        line-height: 1.6
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px
    }

    .stat-visual {
        align-self: center
    }

    .why-choose-section {
        padding: 80px 0
    }

    .why-header {
        padding: 0 15px;
        margin-bottom: 60px
    }

    .why-header h2 {
        font-size: 2rem;
        line-height: 1.2
    }

    .why-header p {
        font-size: 1rem
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px
    }

    .reason-item {
        padding: 30px 24px
    }

    .reason-number {
        font-size: 3rem;
        top: 15px;
        left: 24px
    }

    .reason-content {
        padding-top: 50px
    }

    .reason-content h3 {
        font-size: 1.2rem
    }

    .reason-content p {
        font-size: .9rem
    }

    .reason-icon {
        width: 40px;
        height: 40px;
        top: 24px;
        right: 24px
    }

    .cta-content h3 {
        font-size: 1.6rem
    }

    .cta-content p {
        font-size: 1rem
    }

    .cta-button-new {
        padding: 14px 28px;
        font-size: 1rem
    }
}

@media(max-width:480px) {
    .about-section-new {
        padding: 50px 0
    }

    .about-intro {
        padding: 0 10px
    }

    .about-title {
        font-size: 1.8rem;
        margin-bottom: 24px
    }

    .about-description p {
        font-size: .9rem
    }

    .stats-showcase {
        padding: 0 10px
    }

    .stat-card {
        padding: 20px 16px
    }

    .stat-info h4 {
        font-size: 1.1rem
    }

    .stat-info p {
        font-size: .85rem
    }

    .why-choose-section {
        padding: 60px 0
    }

    .why-header {
        padding: 0 10px
    }

    .why-header h2 {
        font-size: 1.7rem
    }

    .why-header p {
        font-size: .95rem
    }

    .reasons-grid {
        padding: 0 10px
    }

    .reason-item {
        padding: 24px 20px
    }

    .reason-number {
        font-size: 2.5rem;
        top: 12px;
        left: 20px
    }

    .reason-content {
        padding-top: 45px
    }

    .reason-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px
    }

    .reason-content p {
        font-size: .85rem;
        line-height: 1.6
    }

    .reason-icon {
        transform: translateY(-20px);
        width: 36px;
        height: 36px;
        top: 20px;
        right: 20px
    }

    .reason-item:hover .reason-icon {
        transform: rotate(10deg)
    }

    .cta-content h3 {
        font-size: 1.4rem
    }

    .cta-content p {
        font-size: .95rem;
        margin-bottom: 24px
    }

    .cta-button-new {
        padding: 12px 24px;
        font-size: .95rem
    }
}

@media(min-width:1200px) {
    .main-header {
        padding: 20px 0
    }

    .nav-container {
        max-width: 1400px
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0 20px
    }

    .nav-cta .cta-button {
        padding: 12px 28px;
        font-size: 1rem
    }
}

@media(max-width:1199px)and (min-width:992px) {
    .main-header {
        padding: 18px 0
    }

    .nav-links a {
        font-size: .95rem;
        padding: 0 18px
    }

    .nav-cta .cta-button {
        padding: 10px 24px;
        font-size: .95rem
    }
}

@media(max-width:991px)and (min-width:769px) {
    .main-header {
        padding: 15px 0
    }

    .nav-container {
        padding: 0 20px
    }

    .nav-links a {
        font-size: .9rem;
        padding: 0 15px
    }

    .nav-cta .cta-button {
        padding: 8px 20px;
        font-size: .9rem
    }
}

@media(max-width:768px) {
    .main-header {
        padding: 12px 0
    }

    .nav-container {
        padding: 0 15px
    }

    .nav-cta .cta-button {
        padding: 8px 16px;
        font-size: .85rem
    }

    .logo {
        font-size: 1.3rem
    }
}

@media(max-width:480px) {
    .main-header {
        padding: 10px 0
    }

    .nav-container {
        padding: 0 10px
    }

    .nav-cta .cta-button {
        padding: 6px 14px;
        font-size: .8rem
    }

    .logo {
        font-size: 1.2rem
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-font, "Inter", sans-serif);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.5px
}

p {
    font-family: var(--main-font, "Inter", sans-serif);
    font-weight: 400;
    line-height: 1.7
}

button,
.cta-button,
.cta-button-new {
    font-family: var(--main-font, "Inter", sans-serif);
    font-weight: 700
}

.badge-text,
.section-label {
    font-family: var(--main-font, "Inter", sans-serif);
    font-weight: 600
}

.centered-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--main-font, "Inter", sans-serif);
    position: relative;
    overflow: hidden
}

.centered-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.footer-logo-container {
    margin-bottom: 30px
}

.footer-logo-container img {
    height: 50px;
    opacity: .8
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #a0a0a0;
    margin: 0 0 40px
}

.footer-nav {
    position: relative;
    display: flex;
    gap: 50px;
    margin-bottom: 80px
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: opacity .4s ease
}

.footer-nav:hover a {
    opacity: .5
}

.footer-nav a:hover {
    opacity: 1
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all .5s cubic-bezier(.25, .8, .25, 1)
}

.footer-bottom {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: .9rem;
    color: #666
}

.footer-social {
    display: flex;
    gap: 25px
}

.footer-social a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
    transition: color .3s ease
}

.footer-social a:hover {
    color: #fff
}

@media(max-width:768px) {
    .footer-nav {
        gap: 30px;
        margin-bottom: 60px
    }

    .footer-nav a {
        font-size: 1rem
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px
    }
}

#meteor-shower-canvas {
    position: absolute;
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden
}

.cta-spotlight-section {
    background-color: #0a0a0a;
    color: #fff;
    font-family: var(--main-font, "Inter", sans-serif);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible
}

.spotlight-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2
}

.spotlight-content {
    text-align: center;
    max-width: 600px;
    color: #fff;
    position: relative;
    z-index: 2;
    filter: brightness(.3);
    transition: filter .5s ease
}

.spotlight-content:hover {
    filter: brightness(1)
}

.spotlight-content h2 {
    font-weight: 800;
    margin: 0 0 20px
}

.spotlight-content p {
    opacity: .8;
    margin-bottom: 40px
}

.spotlight-content .cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s ease
}

.spotlight-content .cta-button:hover {
    background-color: #fff;
    color: #000
}

@media(max-width:768px) {
    #meteor-shower-canvas {
        left: -20px
    }

    .visible-content {
        clip-path: circle(100% at center)
    }

    .hidden-content {
        display: none
    }

    .spotlight-container {
        cursor: default
    }
}

.contact-split-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: var(--main-font, "Inter", sans-serif);
    color: #333;
    overflow: hidden
}

.contact-split-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px
}

.contact-split-section .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 40px
}

.contact-info .section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px
}

.contact-info .section-title p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.7
}

.contact-details {
    margin-bottom: 40px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all .3s ease
}

.contact-item:hover {
    border-color: #000;
    box-shadow: 0 5px 15px #0000001a;
    transform: translateY(-2px)
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-icon svg {
    width: 24px;
    height: 24px
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5
}

.social-links {
    margin-bottom: 40px
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px
}

.social-icons {
    display: flex;
    gap: 15px
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #f5f5f5;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid transparent
}

.social-icon:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #0003
}

.social-icon svg {
    width: 20px;
    height: 20px
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.cta-buttons .cta-button {
    display: block;
    text-align: center;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid #000
}

.cta-buttons .cta-button.primary {
    background-color: #000;
    color: #fff
}

.cta-buttons .cta-button.primary:hover {
    background-color: #333;
    transform: translateY(-2px)
}

.cta-buttons .cta-button.secondary {
    background-color: #fff;
    color: #000
}

.cta-buttons .cta-button.secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px)
}

.contact-map {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px #0000001a
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none
}

@media(max-width:768px) {
    .contact-split-section .contact-content {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-info .section-title {
        text-align: center;
        margin-bottom: 30px
    }

    .contact-info .section-title h2 {
        font-size: 2rem
    }

    .contact-item {
        padding: 15px;
        margin-bottom: 20px
    }

    .contact-icon {
        width: 40px;
        height: 40px
    }

    .contact-icon svg {
        width: 20px;
        height: 20px
    }

    .contact-text h4 {
        font-size: 1rem
    }

    .contact-text p {
        font-size: .9rem
    }

    .contact-map {
        height: 400px
    }
}

.pricing-section-max {
    background-color: #fff;
    color: #000;
    padding: 100px 0;
    font-family: Inter, sans-serif
}

.pricing-section-max .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px
}

.pricing-section-max .section-title {
    text-align: center;
    margin-bottom: 60px
}

.pricing-section-max .section-title h2 {
    font-weight: 800;
    margin-bottom: 10px
}

.pricing-section-max .section-title p {
    color: #777
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    perspective: 2000px
}

.pricing-card {
    border: 2px solid #000;
    border-radius: 16px;
    display: flex;
    transition: transform .2s ease-out, box-shadow .4s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    background-color: #fff
}

.card-content {
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center
}

.pricing-card h3 {
    font-weight: 800;
    margin: 0 0 10px
}

.pricing-card .tagline {
    color: #777;
    margin-bottom: 30px;
    min-height: 40px
}

.price-box {
    border-bottom: 2px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 30px
}

.price-box span {
    font-size: 3.5rem;
    font-weight: 800
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
    flex-grow: 1
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0
}

.features-list li .feature-icon {
    width: 24px;
    height: 24px;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #000;
    color: #fff
}

.pricing-card.highlighted .features-list li .feature-icon {
    background-color: #fff;
    color: #000
}

.pricing-card.highlighted {
    background-color: #000;
    color: #fff;
    transform: translateY(-20px);
    box-shadow: 0 30px 50px -20px #0003
}

.pricing-card.highlighted .tagline,
.pricing-card.highlighted .price-box {
    color: #ccc;
    border-color: #444
}

.pricing-card.highlighted .features-list li {
    color: #eee
}

.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700
}

.gloss-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .4) 50%, transparent 100%);
    transform: skew(-25deg);
    pointer-events: none;
    transition: left .8s cubic-bezier(.23, 1, .32, 1)
}

.pricing-card:hover .gloss-effect {
    left: 150%
}

.cta-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all .3s ease;
    border: 2px solid #000;
    display: block
}

.highlighted .cta-button.primary {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff !important
}

.highlighted .cta-button.primary:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important
}

.cta-button.secondary {
    background-color: #fff;
    color: #000
}

.cta-button.secondary:hover {
    background-color: #000;
    color: #fff
}

.pricing-footer {
    text-align: center;
    margin-top: 60px
}

.pricing-footer a {
    color: #777;
    text-decoration: none;
    position: relative
}

.pricing-footer a span {
    font-style: italic
}

.pricing-footer a strong {
    color: #000;
    font-weight: 700;
    position: relative
}

.pricing-footer a strong:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.19, 1, .22, 1)
}

.pricing-footer a:hover strong:after {
    transform: scaleX(1)
}

@media(max-width:480px) {
    .pricing-grid {
        grid-template-columns: 1fr !important
    }
}

@media(max-width:992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-card,
    .pricing-card.highlighted {
        transform: none !important
    }

    .gloss-effect {
        display: none
    }

    .pricing-section-max .section-title h2 {
        font-size: 1.7rem !important
    }

    .faq-question,
    .faq-answer p {
        font-size: .9rem !important
    }
}

.faq-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    font-family: var(--main-font, "Inter", sans-serif);
    color: var(--text-color, #000)
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px
}

.faq-accordion {
    border-top: 2px solid #eee
}

.faq-item {
    border-bottom: 2px solid #eee
}

.faq-question {
    background: none;
    border: none;
    cursor: pointer;
    padding: 30px 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color, #000)
}

.faq-question span {
    margin-right: 10px
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform .4s cubic-bezier(.25, .8, .25, 1)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.25, .8, .25, 1), padding .5s ease
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: .7;
    padding: 0 10px 10px;
    margin: 0
}

.faq-item.active .faq-answer {
    max-height: 200px
}

.faq-item.active .faq-icon {
    transform: rotate(135deg)
}

@keyframes hint-swipe {

    0%,
    60%,
    to {
        transform: translate(0) rotate(0)
    }

    30% {
        transform: translate(20px) rotate(4deg)
    }
}

.mobile-card-stack-wrapper .mobile-service-card:last-child {
    animation: hint-swipe 4s ease-in-out infinite
}

.mobile-card-stack-wrapper .mobile-service-card.dragging {
    animation: none
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .5s ease, visibility .5s ease
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, .1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.testimonial-split-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    font-family: var(--main-font, "Inter", sans-serif);
    color: var(--text-color, #000)
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start
}

.testimonial-sticky-content {
    position: sticky;
    top: 120px
}

.testimonial-sticky-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 20px
}

.testimonial-sticky-content p {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.7
}

.testimonial-card-list {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.testimonial-card {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 16px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle at 15% 25%, rgba(0, 0, 0, .04) 0%, transparent 40%), radial-gradient(circle at 85% 75%, rgba(0, 0, 0, .03) 0%, transparent 45%), radial-gradient(circle at 50% 50%, rgba(0, 0, 0, .02) 0%, transparent 60%), linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, .01) 49%, rgba(0, 0, 0, .01) 51%, transparent 52%), repeating-linear-gradient(135deg, transparent, transparent 25px, rgba(0, 0, 0, .005) 25px, rgba(0, 0, 0, .005) 50px), repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(0, 0, 0, .003) 30px, rgba(0, 0, 0, .003) 60px);
    background-size: 350px 350px, 350px 350px, 250px 250px, 10px 10px, 60px 60px, 80px 80px;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0 0, 0 0, 0 0
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(30deg, transparent, transparent 15px, rgba(0, 0, 0, .008) 15px, rgba(0, 0, 0, .008) 30px);
    pointer-events: none;
    z-index: 0;
    animation: patternFloat 20s ease-in-out infinite
}

@keyframes patternFloat {

    0%,
    to {
        transform: translate(0) rotate(0)
    }

    33% {
        transform: translate(10px, -10px) rotate(1deg)
    }

    66% {
        transform: translate(-5px, 5px) rotate(-1deg)
    }
}

.testimonial-card>* {
    position: relative;
    z-index: 1
}

.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out, box-shadow .3s ease
}

.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px -10px #0000001a
}

.card-stars {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 20px
}

.quote {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 30px;
    font-style: italic
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0
}

.client-title {
    font-size: .9rem;
    color: #777;
    margin: 0
}

@media(max-width:768px) {
    .testimonial-split-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5px
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .testimonial-sticky-content {
        position: static;
        text-align: center;
        margin-bottom: 40px
    }

    .testimonial-sticky-content h2 {
        font-size: 2rem;
        margin-bottom: 15px
    }

    .testimonial-sticky-content p {
        font-size: 1rem
    }

    .testimonial-card {
        padding: 25px
    }

    .quote {
        font-size: 1.1rem
    }
}

.demo-cta-section {
    padding: 100px 0;
    background-color: var(--bg-color, #fff)
}

.demo-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background-color: var(--text-color, #000000);
    color: var(--white-color, #ffffff);
    padding: 80px 100px;
    border-radius: 30px;
    position: relative;
    overflow: hidden
}

.demo-cta-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2
}

.demo-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px
}

.demo-cta-content p {
    line-height: 1.7;
    opacity: .8;
    margin-bottom: 30px
}

.demo-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

.demo-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--white-color, #ffffff);
    color: var(--text-color, #000000);
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    padding: 14px 14px 14px 30px;
    transition: transform .3s ease, background-color .3s ease;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0
}

.demo-cta-button:hover {
    transform: scale(1.03);
    background-color: #e5e5e5
}

.demo-cta-decorator {
    width: 36px;
    height: 36px;
    background-image: linear-gradient(45deg, #000, #fff);
    border-radius: 50%;
    transition: transform .5s ease-in-out
}

.demo-cta-button:hover .demo-cta-decorator {
    animation: demo-cta-pulse-and-spin 3s infinite ease-in-out
}

.demo-cta-graphic {
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    transform: translate(50%, -50%);
    z-index: 1
}

.demo-cta-graphic .demo-cta-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--white-color, #ffffff)
}

.demo-cta-graphic .demo-cta-c1 {
    width: 100%;
    height: 100%;
    opacity: .03
}

.demo-cta-graphic .demo-cta-c2 {
    width: 80%;
    height: 80%;
    opacity: .05
}

.demo-cta-graphic .demo-cta-c3 {
    width: 60%;
    height: 60%;
    opacity: .08
}

.demo-cta-graphic .demo-cta-c4 {
    width: 40%;
    height: 40%;
    opacity: .15
}

.demo-cta-graphic .demo-cta-c5 {
    width: 20%;
    height: 20%;
    opacity: 1
}

@keyframes demo-cta-pulse-and-spin {
    0% {
        transform: scale(1) rotate(0)
    }

    50% {
        transform: scale(1.1) rotate(180deg)
    }

    to {
        transform: scale(1) rotate(360deg)
    }
}

@media(max-width:992px) {
    .demo-cta-inner {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center
    }

    .demo-cta-content {
        max-width: 100%
    }

    .demo-cta-buttons {
        justify-content: center
    }

    .demo-cta-button {
        flex-grow: 0;
        flex-basis: auto
    }

    .demo-cta-graphic {
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        width: 150%;
        opacity: .1
    }
}

@media(max-width:576px) {
    .demo-cta-content h2 {
        font-size: 2.2rem
    }

    .demo-cta-buttons {
        flex-wrap: nowrap
    }

    .demo-cta-button {
        padding: 12px 10px 12px 20px
    }

    .demo-cta-button:last-child {
        display: none
    }

    .demo-cta-button span {
        font-size: .9rem
    }

    .demo-cta-decorator {
        width: 32px;
        height: 32px
    }
}
