.home-page {
    position: relative;
    overflow: hidden;
    padding-top: 116px;
    padding-bottom: 88px;
}

.home-page::before,
.home-page::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-page::before {
    top: 420px;
    left: -80px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(29, 208, 187, 0.72) 16%, transparent 18%) 0 0 / 18px 18px;
}

.home-page::after {
    right: 24px;
    bottom: 160px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.75) 8%, transparent 10%) 0 0 / 16px 16px,
        var(--secondary-color);
    box-shadow: 0 32px 80px var(--secondary-color-shadow);
}

.home-shell {
    position: relative;
    z-index: 1;
    width: min(var(--linix-shell), calc(100% - 32px));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    color: var(--heading-color);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-heading h3 {
    color: var(--heading-color);
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-heading h4 {
    color: var(--heading-color);
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-kicker {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-kicker--center {
    text-align: center;
}

.home-hero__grid,
.home-showcase__grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.home-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.home-hero__copy {
    max-width: 680px;
}

.home-hero__eyebrow {
    margin-bottom: 20px;
    color: #ab3efb;
    font-size: 25px;
    font-style: italic;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    min-height: 40px;
}

.home-hero__title {
    color: var(--heading-color);
    font-size: clamp(52px, 6vw, 70px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.home-hero__title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 55%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-hero__description,
.home-showcase__description {
    color: var(--linix-light-soft);
    line-height: 1.6;
}

.home-hero__description {
    max-width: 620px;
    margin-top: 24px;
    font-size: 20px;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 60px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-button:hover {
    transform: translateY(-2px);
}

.home-button--primary {
    color: #ffffff;
    background: var(--primary-color);
    box-shadow: 0 24px 50px var(--primary-color-shadow);
}

.home-button--secondary {
    color: var(--heading-color);
    background: #ffffff;
    border: 1px solid var(--primary-color-border);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.home-button--violet {
    color: #ffffff;
    background: var(--secondary-color);
    box-shadow: 0 20px 40px var(--secondary-color-shadow);
}

.home-button__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
}

.home-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.home-hero__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 36px;
}

.home-hero__shape {
    position: absolute;
}

.home-hero__shape--yellow {
    top: 140px;
    right: 80px;
    width: 160px;
    height: 90px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 215, 77, 0.92), rgba(255, 170, 0, 0.82));
    transform: rotate(-14deg);
}

.home-hero__shape--mint {
    top: 160px;
    right: 18px;
    width: 74px;
    height: 74px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.82) 14%, transparent 16%) 0 0 / 18px 18px;
}

.home-hero__shape--pink {
    top: 72px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle, rgba(255, 110, 160, 0.9), rgba(255, 110, 160, 0));
}

.home-monitor {
    position: absolute;
    top: 16px;
    right: 0;
    width: 100%;
    max-width: 720px;
    transform: rotate(-3deg);
}

.home-monitor__screen {
    overflow: hidden;
    padding: 28px;
    border: 12px solid #10141b;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--linix-shadow-strong);
}

.home-monitor__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    color: var(--text-color-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-monitor__topbar div {
    display: flex;
    gap: 20px;
    color: var(--text-color-soft);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.home-monitor__content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: end;
}

.home-monitor__copy p {
    max-width: 280px;
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.6;
}

.home-monitor__copy span {
    display: block;
    max-width: 240px;
    margin-top: 16px;
    color: var(--text-color-soft);
    font-size: 14px;
    line-height: 1.6;
}

.home-monitor__copy button {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--secondary-color);
    box-shadow: 0 18px 40px var(--secondary-color-shadow);
}

.home-monitor__art {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 32px;
    background: #f5f9ff;
}

.home-monitor__orb {
    position: absolute;
    top: 32px;
    right: 48px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: #9e8cff;
}

.home-building {
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 310px;
    height: 285px;
}

.home-building__tower,
.home-building__block,
.home-building__base {
    position: absolute;
    border-radius: 8px;
    background: linear-gradient(180deg, #f7f7f7 0%, #d9d9d9 100%);
    box-shadow: inset -18px -18px 0 rgba(0, 0, 0, 0.05);
}

.home-building__tower {
    left: 26px;
    bottom: 52px;
    width: 92px;
    height: 182px;
}

.home-building__block {
    right: 0;
    bottom: 50px;
    width: 218px;
    height: 198px;
    transform: skewX(-10deg);
}

.home-building__base {
    right: 22px;
    bottom: 20px;
    width: 236px;
    height: 46px;
}

.home-building::before,
.home-building::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #0f4c81 0%, #113b63 100%);
    opacity: 0.9;
}

.home-building::before {
    left: 40px;
    bottom: 104px;
    width: 62px;
    height: 86px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.38),
        16px 0 0 rgba(255, 255, 255, 0.08),
        32px 0 0 rgba(255, 255, 255, 0.08);
}

.home-building::after {
    right: 72px;
    bottom: 88px;
    width: 82px;
    height: 62px;
    transform: skewX(-10deg);
}

.home-monitor__stand {
    width: 280px;
    height: 112px;
    margin: -6px auto 0;
    border-bottom-right-radius: 36px;
    border-bottom-left-radius: 36px;
    background: linear-gradient(180deg, rgba(223, 223, 223, 0.95) 0%, rgba(177, 177, 177, 0.92) 100%);
    clip-path: polygon(42% 0, 58% 0, 72% 100%, 28% 100%);
}

.home-laptop {
    position: absolute;
    left: 0;
    bottom: 104px;
    z-index: 20;
    width: 360px;
}

.home-laptop__screen {
    padding: 12px;
    border: 8px solid #0f172a;
    border-radius: 18px;
    background: #101722;
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.3);
}

.home-laptop__preview {
    height: 152px;
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(8, 15, 28, 0.86), rgba(31, 41, 55, 0.95)),
        radial-gradient(circle at 70% 32%, rgba(255, 168, 76, 0.95) 0, rgba(255, 168, 76, 0.18) 16%, transparent 17%),
        linear-gradient(120deg, rgba(59, 130, 246, 0.65), rgba(29, 78, 216, 0));
}

.home-laptop__timeline {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.home-laptop__timeline span {
    display: block;
    height: 8px;
    border-radius: 999px;
}

.home-laptop__timeline .is-pink {
    background: #f472b6;
}

.home-laptop__timeline .is-purple {
    background: #a78bfa;
}

.home-laptop__timeline .is-green {
    background: #34d399;
}

.home-laptop__timeline .is-orange {
    background: #fb923c;
}

.home-laptop__base {
    width: 112%;
    height: 16px;
    margin: 0 auto;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    background: linear-gradient(180deg, #d8d8d8 0%, #bdbdbd 100%);
}

.home-camera,
.home-keyboard,
.home-mouse,
.home-plant,
.home-mug {
    position: absolute;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.home-camera {
    left: -10px;
    bottom: 98px;
    z-index: 30;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: #20242e;
}

.home-camera::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 999px;
    background: radial-gradient(circle, #111827 24%, #2b3442 25%, #2b3442 48%, #0f172a 49%);
}

.home-keyboard {
    right: 140px;
    bottom: 78px;
    width: 220px;
    height: 34px;
    border-radius: 14px;
    background: #ffffff;
}

.home-mouse {
    right: 70px;
    bottom: 72px;
    width: 34px;
    height: 50px;
    border-radius: 999px;
    background: #ffffff;
}

.home-plant {
    right: 0;
    bottom: 86px;
    z-index: 10;
    width: 116px;
    height: 146px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 28px;
    background: #f3efe8;
}

.home-plant span {
    position: absolute;
    bottom: 44px;
    width: 16px;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, #5ba44b, #2d6f34);
    transform-origin: bottom center;
}

.home-plant span:nth-child(1) {
    left: 28px;
    height: 82px;
    transform: rotate(-22deg);
}

.home-plant span:nth-child(2) {
    left: 52px;
    height: 98px;
}

.home-plant span:nth-child(3) {
    right: 28px;
    height: 76px;
    transform: rotate(18deg);
}

.home-mug {
    right: 96px;
    bottom: 62px;
    width: 68px;
    height: 84px;
    border-radius: 14px 14px 24px 24px;
    background: #ffffff;
}

.home-mug::before {
    content: "";
    position: absolute;
    top: 22px;
    right: -12px;
    width: 24px;
    height: 28px;
    border: 5px solid #f8d76e;
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.home-trusted,
.home-services,
.home-process,
.home-projects,
.home-why,
.home-showcase,
.home-testimonials,
.home-pricing {
    position: relative;
    overflow: hidden;
    margin-top: 92px;
}

.home-pricing::before,
.home-pricing::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-pricing::before {
    top: -20px;
    right: 40px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(29, 208, 187, 0.24) 12%, transparent 14%) 0 0 / 18px 18px;
}

.home-pricing::after {
    left: -70px;
    bottom: 30px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--primary-color) 14%, transparent), transparent 70%);
}

.home-trusted__row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    align-items: center;
}

.home-trusted__brand {
    color: rgba(15, 23, 42, 0.52);
    font-size: 29px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.04em;
}

.home-services {
    position: relative;
    overflow: hidden;
}

.home-services::before,
.home-services::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-services::before {
    top: -10px;
    right: 60px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary-color) 28%, transparent) 12%, transparent 14%) 0 0 / 18px 18px;
}

.home-services::after {
    left: -70px;
    bottom: 20px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(29, 208, 187, 0.16), transparent 70%);
}

.home-services__slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding-bottom: 48px;
}

.home-services__slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: ease;
}

.home-services__slider .swiper-slide {
    display: flex;
    height: auto;
}

.home-services__pagination {
    position: relative;
    bottom: -30px !important;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
}

.home-services__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(15, 23, 42, 0.16);
    opacity: 1;
    cursor: pointer;
}

.home-services__pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--primary-color);
}

.home-testimonials {
    position: relative;
    overflow: hidden;
}

.home-testimonials::before,
.home-testimonials::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-testimonials::before {
    top: 20px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--secondary-color) 14%, transparent), transparent 70%);
}

.home-testimonials::after {
    right: 40px;
    bottom: -10px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.28) 12%, transparent 14%) 0 0 / 16px 16px;
}

.home-testimonials__slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding-bottom: 48px;
}

.home-testimonials__slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: ease;
}

.home-testimonials__slider .swiper-slide {
    display: flex;
    height: auto;
}

.home-testimonials__pagination {
    position: relative;
    bottom: -30px !important;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
}

.home-testimonials__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(15, 23, 42, 0.16);
    opacity: 1;
    cursor: pointer;
}

.home-testimonials__pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--primary-color);
}

.service-card {
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    text-align: center;
    border-radius: var(--linix-radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--linix-shadow-soft);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--card-accent-start), var(--card-accent-end));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.service-card__icon .material-symbols-outlined {
    font-size: 32px;
    font-variation-settings: "FILL" 1;
}

.service-card h3 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    transition: all 0.3s ease-in;
}

.service-card h3:hover {
    color: var(--primary-color);
}

.service-card p {
    margin-top: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.service-card__line {
    width: 48px;
    height: 4px;
    margin: auto auto 0;
    border-radius: 999px;
    background: var(--card-line);
}

.home-process {
    position: relative;
    overflow: hidden;
}

.home-process::before,
.home-process::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-process::before {
    top: 10px;
    right: -50px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.16), transparent 70%);
}

.home-process::after {
    left: 40px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(29, 208, 187, 0.3) 12%, transparent 14%) 0 0 / 16px 16px;
}

.home-process__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    position: relative;
    text-align: center;
}

.process-card__index {
    display: block;
    margin-bottom: 12px;
    color: var(--text-color-soft);
    font-size: 14px;
    font-weight: 700;
}

.process-card__bubble {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, color-mix(in srgb, var(--step-color) 92%, white), var(--step-color));
    box-shadow: 0 16px 36px color-mix(in srgb, var(--step-color) 24%, transparent);
}

.process-card__line {
    position: absolute;
    top: 64px;
    left: calc(50% + 34px);
    width: calc(100% - 24px);
    height: 2px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--step-color) 38%, white), rgba(255, 99, 56, 0.2));
}

.process-card h3 {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 800;
    transition: all 0.3s ease-in;
}

.process-card h3:hover {
    color: var(--primary-color);
}

.process-card p {
    margin-top: 12px;
    color: var(--text-color-soft);
    line-height: 1.6;
}

.home-projects {
    position: relative;
    overflow: hidden;
}

.home-projects::before,
.home-projects::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-projects::before {
    top: 40px;
    left: -60px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 114, 145, 0.24) 12%, transparent 14%) 0 0 / 18px 18px;
}

.home-projects::after {
    right: -80px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--secondary-color) 14%, transparent), transparent 70%);
}

.home-projects__filters {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.project-filter {
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--linix-shadow-soft);
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.project-filter:hover,
.project-filter.is-active {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateY(-2px);
}

.home-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--project-start), var(--project-end));
    box-shadow: var(--linix-shadow-soft);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 15, 30, 0.12) 0%, rgba(8, 15, 30, 0.38) 45%, rgba(8, 15, 30, 0.78) 100%);
    z-index: 0;
}

.project-card__visual {
    position: absolute;
    inset: 0;
}

.project-card__mockup,
.project-card__play {
    position: absolute;
}

.project-card__mockup {
    inset: 20px;
    border-radius: 22px;
}

.project-card__play {
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(10px);
}

.project-card:not(.is-video):not(.is-camera) .project-card__play {
    display: none;
}

.project-card__play .material-symbols-outlined,
.project-card.is-video .project-card__arrow,
.project-card.is-camera .project-card__arrow {
    font-variation-settings: "FILL" 1;
}

.project-card__content,
.project-card__arrow {
    position: relative;
    z-index: 1;
}

.project-card__content h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    height: 72px;
}

.project-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.project-card__categories p {
    margin: 0;
    padding: 4px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary-color);
    box-shadow: 0 12px 24px color-mix(in srgb, var(--primary-color) 28%, transparent);
    backdrop-filter: blur(8px);
}

.project-card__arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    position: absolute;
    right: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__arrow::after {
    content: "east";
    font-family: "Material Symbols Outlined";
    font-size: 24px;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transform: translateX(-18px);
    opacity: 0;
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__arrow .material-symbols-outlined {
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card__arrow:hover {
    background: var(--primary-color);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.project-card__arrow:hover .material-symbols-outlined {
    transform: translateX(18px);
    opacity: 0;
}

.project-card__arrow:hover::after {
    transform: translateX(0);
    opacity: 1;
}

.project-card.is-monitor .project-card__mockup {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)) 0 0 / 100% 100%,
        linear-gradient(180deg, #f6f0ff 0 18%, #36216f 18% 100%);
}

.project-card.is-monitor .project-card__mockup::before,
.project-card.is-monitor .project-card__mockup::after,
.project-card.is-showcase .project-card__mockup::before,
.project-card.is-showcase .project-card__mockup::after,
.project-card.is-clean .project-card__mockup::before,
.project-card.is-clean .project-card__mockup::after {
    content: "";
    position: absolute;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.project-card.is-monitor .project-card__mockup::before {
    top: 18px;
    left: 18px;
    width: 55%;
    height: 42%;
}

.project-card.is-monitor .project-card__mockup::after {
    right: 18px;
    bottom: 18px;
    width: 32%;
    height: 38%;
}

.project-card.is-showcase .project-card__mockup {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
}

.project-card.is-showcase .project-card__mockup::before {
    top: 22px;
    left: 22px;
    width: 44%;
    height: 62%;
}

.project-card.is-showcase .project-card__mockup::after {
    right: 22px;
    top: 44px;
    width: 36%;
    height: 44%;
}

.project-card.is-video .project-card__mockup,
.project-card.is-camera .project-card__mockup {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 18%),
        radial-gradient(circle at 70% 30%, rgba(255, 191, 71, 0.3), transparent 20%),
        linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(255, 255, 255, 0.06));
}

.project-card.is-video .project-card__mockup::before,
.project-card.is-camera .project-card__mockup::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 80px;
    border: 5px solid rgba(255, 255, 255, 0.86);
    border-radius: 14px;
    transform: translate(-50%, -50%);
}

.project-card.is-video .project-card__mockup::after,
.project-card.is-camera .project-card__mockup::after {
    content: "";
    position: absolute;
    top: calc(50% - 44px);
    left: calc(50% - 8px);
    width: 16px;
    height: 22px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 5px;
}

.project-card.is-clean .project-card__mockup {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 238, 0.4));
}

.project-card.is-clean .project-card__mockup::before {
    top: 24px;
    left: 26px;
    width: calc(100% - 52px);
    height: 42%;
}

.project-card.is-clean .project-card__mockup::after {
    bottom: 24px;
    left: 26px;
    width: 42%;
    height: 28%;
}

.project-card.is-banner .project-card__mockup {
    background:
        linear-gradient(90deg, #4457ff 0 50%, #f8b41d 50% 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.project-card.is-banner .project-card__mockup::before,
.project-card.is-banner .project-card__mockup::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
}

.project-card.is-banner .project-card__mockup::before {
    top: 38px;
    left: 26px;
    width: 120px;
    height: 26px;
}

.project-card.is-banner .project-card__mockup::after {
    top: 80px;
    left: 26px;
    width: 92px;
    height: 20px;
}

.home-projects__cta {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.home-stats {
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.home-stats::before,
.home-stats::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.home-stats::before {
    top: -30px;
    left: 60px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary-color) 22%, transparent) 12%, transparent 14%) 0 0 / 16px 16px;
}

.home-stats::after {
    right: -60px;
    bottom: -40px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(255, 114, 145, 0.16), transparent 70%);
}

.home-stats__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 32px;
    border-radius: 34px;
    background: var(--linix-surface-white);
    box-shadow: var(--linix-shadow-soft);
    backdrop-filter: blur(8px);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--card-accent-start), var(--card-accent-end));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.stat-card__icon .material-symbols-outlined {
    font-size: 28px;
    font-variation-settings: "FILL" 1;
}

.stat-card__content strong {
    display: block;
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.6;
}

.stat-card__content p {
    margin-top: 4px;
    color: var(--text-color);
}

.home-why {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.home-why__content {
    position: relative;
    margin-left: auto;
    max-width: 560px;
    padding: 32px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(4, 20, 60, 0.12);
}

.home-why__content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: #ffffff;
    opacity: 0.7;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.reason-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.reason-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--text-color-soft);
    font-size: 18px;
}

.reason-list__icon {
    color: var(--primary-color);
    font-variation-settings: "FILL" 1;
}

.home-showcase__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.showcase-video {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
        radial-gradient(circle at 72% 35%, rgba(255, 191, 71, 0.34), transparent 16%),
        linear-gradient(145deg, #111827, #475569);
    box-shadow: var(--linix-shadow-soft);
}

.showcase-video::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 120px;
    border: 6px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    transform: translate(-50%, -50%);
}

.showcase-video::after {
    content: "";
    position: absolute;
    top: calc(50% - 68px);
    left: calc(50% - 14px);
    width: 28px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.showcase-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%);
    backdrop-filter: blur(12px);
}

.showcase-tools {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.showcase-tools span {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--heading-color);
    font-size: 34px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--linix-shadow-soft);
}

.home-testimonials__grid,
.home-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card,
.pricing-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: var(--linix-surface-white);
    box-shadow: var(--linix-shadow-soft);
}

.testimonial-card__quote {
    color: var(--primary-color);
    font-size: 100px;
    line-height: 1;
    height: 50px;
}

.testimonial-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card__stars {
    color: #fbbf24;
    letter-spacing: 0.18em;
}

.testimonial-card__text {
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-card__author {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    object-fit: cover;
}

.testimonial-card__author strong {
    display: block;
    color: var(--heading-color);
    font-size: 18px;
}

.testimonial-card__author p {
    color: var(--text-color-soft);
    font-size: 0.8rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card.is-featured {
    border: 1px solid var(--primary-color-border);
    transform: translateY(-10px);
}

.pricing-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: var(--primary-color);
}

.pricing-card__title {
    position: relative;
    align-self: flex-start;
    max-width: 100%;
}

.pricing-card__name {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: var(--plan-accent);
    cursor: help;
    font-size: 16px;
    font-weight: 700;
    outline: 0;
}

.pricing-card__name::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--plan-accent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--plan-accent) 14%, transparent);
}

.pricing-card__info {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 5;
    width: min(320px, calc(100vw - 56px));
    margin: 0;
    padding: 12px 14px;
    border: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

.pricing-card__info::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-top: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    background: #ffffff;
    transform: rotate(45deg);
}

.pricing-card__title:hover .pricing-card__info,
.pricing-card__title:focus-within .pricing-card__info {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.pricing-card__subtitle {
    font-size: 18px;
}

.pricing-card__subtitle>span {
    color: var(--plan-accent);
    font-weight: 600;
}

.pricing-card__price {
    margin-top: 14px;
    color: var(--text-color);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.05;
}

.pricing-card__price.pricing-card__old-price {
    font-size: clamp(18px, 4vw, 24px);
    text-decoration: line-through;
}

.pricing-card__features {
    display: grid;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-color);
    position: relative;
}

.pricing-card__features-desc {
    position: absolute;
    left: 34px;
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 56px));
    margin: 0;
    padding: 12px 14px;
    border: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

.pricing-card__features-desc::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-top: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--plan-accent) 24%, transparent);
    background: #ffffff;
    transform: rotate(45deg);
}

.pricing-card__features > li:hover {
    cursor: pointer;
}

.pricing-card__features > li:hover .pricing-card__features-desc {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.pricing-card__features .material-symbols-outlined {
    color: var(--plan-accent);
    font-variation-settings: "FILL" 1;
}

.pricing-card__features .material-symbols-outlined.close {
    opacity: 0.5;
}

.pricing-card__button {
    min-height: 54px;
    margin-top: auto;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    background: var(--plan-accent);
}

@media (max-width: 1279px) {
    .home-monitor {
        position: relative;
        max-width: 680px;
        margin: 0 auto;
        transform: none;
    }

    .home-laptop {
        left: 24px;
        bottom: 92px;
    }

    .home-trusted__row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-projects__grid,
    .home-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .home-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .home-page {
        padding-top: 104px;
        padding-bottom: 56px;
    }

    .home-hero__grid,
    .home-showcase__grid {
        grid-template-columns: 1fr;
    }

    .home-why {
        padding: 56px 0;
    }

    .home-why__content {
        margin-left: 0;
        max-width: none;
        padding: 24px;
        border-radius: 22px;
    }

    .home-why__content::before {
        opacity: 0.85;
    }

    .home-keyboard,
    .home-mouse,
    .home-mug,
    .home-plant {
        display: none;
    }

    .home-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-card__line {
        display: none;
    }

    .showcase-video {
        min-height: 340px;
    }
}

@media (max-width: 767px) {
    .home-shell {
        width: min(var(--linix-shell), calc(100% - 24px));
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .home-trusted,
    .home-services,
    .home-process,
    .home-projects,
    .home-why,
    .home-showcase,
    .home-testimonials,
    .home-pricing {
        margin-top: 72px;
    }

    .home-hero__eyebrow {
        font-size: 24px;
    }

    .home-hero__description {
        font-size: 17px;
    }

    .home-button {
        width: 100%;
        font-size: 16px;
    }

    .home-monitor__screen {
        padding: 16px;
        border-width: 8px;
        border-radius: 22px;
    }

    .home-monitor__topbar div,
    .home-laptop,
    .home-camera {
        display: none;
    }

    .home-monitor__content {
        grid-template-columns: 1fr;
    }

    .home-monitor__art {
        height: 230px;
    }

    .home-trusted__row,
    .home-process__grid,
    .home-projects__grid,
    .home-stats__grid,
    .home-testimonials__grid,
    .home-pricing__grid,
    .showcase-tools {
        grid-template-columns: 1fr;
    }

    .home-trusted__brand {
        font-size: 24px;
    }

    .service-card {
        min-height: 0;
    }

    .project-card,
    .showcase-video {
        min-height: 280px;
    }

    .home-stats__grid {
        padding: 22px;
    }

    .reason-list li {
        align-items: flex-start;
        font-size: 16px;
    }

    .pricing-card.is-featured {
        transform: none;
    }
}
