:root {
    --bg: #08101d;
    --panel: rgba(15, 24, 43, 0.84);
    --line: rgba(255, 255, 255, 0.08);
    --text: #edf3ff;
    --muted: #b8c5db;
    --cyan: #11d7ff;
    --violet: #9f52ff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 24px;
    --container: min(1220px, calc(100% - 40px));
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 10% 10%, rgba(17, 215, 255, 0.12), transparent 24%),
        radial-gradient(circle at 90% 14%, rgba(159, 82, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #08101d 0%, #09111f 35%, #08101d 100%);
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
textarea {
    font: inherit;
}
.container {
    width: var(--container);
    margin: 0 auto;
}
.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 78%);
}
.glass {
    background: linear-gradient(180deg, rgba(17, 26, 48, 0.9), rgba(10, 16, 30, 0.88));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(8, 16, 29, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand img {
    width: 100%;
    height: 52px;
    flex: 0 0 auto;
}
.brand strong {
    display: block;
    letter-spacing: 0.18em;
    font-size: 1.05rem;
}
.brand span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 2px;
}
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    position: relative;
    color: #dce5fb;
    font-weight: 500;
}
.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 12px;
}
.pyxios-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 300;
}

.pyxios-lang-toggle,
.pyxios-lang-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  min-width: 68px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
}

.pyxios-lang-toggle:hover,
.pyxios-lang-direct:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.pyxios-lang-toggle:focus,
.pyxios-lang-direct:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.pyxios-lang-current {
  line-height: 1;
}

.pyxios-lang-chevron {
  display: inline-flex;
  opacity: .85;
  transition: transform .22s ease;
}

.pyxios-lang-switcher.open .pyxios-lang-chevron {
  transform: rotate(180deg);
}

.pyxios-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18,18,22,0.94);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s ease;
}

.pyxios-lang-switcher.open .pyxios-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pyxios-lang-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all .18s ease;
}

.pyxios-lang-item:hover {
  background: rgba(255,255,255,0.08);
}

.pyxios-lang-item.active {
  background: rgba(255,255,255,0.14);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}
.btn.small {
    padding: 12px 18px;
    font-size: 0.95rem;
}
.btn-primary {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    color: #07111f;
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(120, 160, 255, 0.28);
}
.hero {
    padding: 74px 0 38px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 42px;
    align-items: center;
}
.eyebrow {
    margin: 0 0 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #81d8ff;
    font-size: 0.8rem;
}
h1,
h2,
h3 {
    margin: 0;
}
.hero h1,
.subpage h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
    max-width: 10ch;
}
.gradient-text {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead {
    color: var(--muted);
    font-size: 1.14rem;
    line-height: 1.78;
    max-width: 62ch;
    margin: 0;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-copy {
    max-width: 100%;
}
.hero-meta {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 6px;
}
.meta-card {
    padding: 18px;
    border-radius: 20px;
}
.meta-card strong {
    display: block;
}
.meta-card span {
    display: block;
    color: var(--muted);
    margin-top: 6px;
    font-size: 0.94rem;
}
.hero-stage {
    position: relative;
    min-height: 650px;
}
.hero-main {
    padding: 16px;
    border-radius: 30px;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-10deg) rotateX(6deg);
    transition: transform 0.18s ease;
}
.hero-main img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.float-card {
    position: absolute;
    padding: 10px;
    border-radius: 24px;
    overflow: hidden;
}
.float-card img {
    border-radius: 16px;
}
.float-a {
    left: -8px;
    bottom: 90px;
    width: 240px;
    transform: rotate(-8deg);
}
.float-b {
    right: 0;
    bottom: 16px;
    width: 220px;
}
.parallax-band {
    position: relative;
    padding: 28px 0 8px;
    overflow: hidden;
}
.parallax-box {
    padding: 28px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.parallax-layer {
    position: absolute;
    border-radius: 28px;
    filter: blur(2px);
    opacity: 0.8;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(17, 215, 255, 0.18), rgba(159, 82, 255, 0.18));
}
.parallax-layer.one {
    width: 140px;
    height: 140px;
    right: 8%;
    top: 14%;
}
.parallax-layer.two {
    width: 90px;
    height: 90px;
    left: 6%;
    bottom: 18%;
}
.trust-strip {
    padding: 0 0 24px;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.trust-grid span {
    text-align: center;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}
.section {
    padding: 36px 0 90px;
}
.section-head {
    margin-bottom: 28px;
}
.section-head.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}
.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}
.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card,
.service-card,
.value-card,
.package-card {
    padding: 26px;
    border-radius: 26px;
    transition: 0.22s ease;
}
.feature-card:hover,
.service-card:hover,
.value-card:hover,
.package-card:hover {
    transform: translateY(-5px);
}
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(17, 215, 255, 0.16), rgba(159, 82, 255, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.45rem;
}
.feature-card h3,
.service-card h3,
.value-card h3,
.package-card h3,
.slide-copy h3,
.masonry-copy h3,
.testimonial-card h3 {
    margin: 18px 0 10px;
    font-size: 1.18rem;
}
.feature-card p,
.service-card p,
.value-card p,
.package-card p,
.slide-copy p,
.masonry-copy p,
.contact-copy p,
.testimonial-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.counter-card {
    padding: 24px;
    border-radius: 24px;
    text-align: center;
}
.counter-number {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}
.counter-label {
    display: block;
    color: var(--muted);
    margin-top: 8px;
}
.slider {
    position: relative;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
}
.slider-viewport {
    position: relative;
    min-height: 470px;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px) scale(0.98);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: center;
}
.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.slide-media img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(9, 15, 28, 0.9);
    color: #fff;
    font-size: 2rem;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.slider-btn.prev {
    left: 18px;
}
.slider-btn.next {
    right: 18px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.18);
}
.slider-dots button.active {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.testimonials-wrap {
    position: relative;
    padding: 28px;
    border-radius: 30px;
}
.testimonials-viewport {
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.45s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 4px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    padding: 24px;
    border-radius: 24px;
    height: 100%;
}
.stars {
    color: #ffd66b;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}
.testimonial-meta {
    margin-top: 16px;
    font-size: 0.95rem;
    color: #dfe8fb;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.package-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #dce6fb;
}
.cta-banner {
    padding: 28px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.subpage {
    padding: 36px 0 16px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #dbe4fb;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.masonry {
    overflow: hidden;
    border-radius: 28px;
}
.masonry img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    cursor: pointer;
}
.masonry.wide {
    grid-column: span 2;
}
.masonry-copy {
    padding: 18px 18px 24px;
}
.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #eef4ff;
    cursor: pointer;
}
.filter-btn.active {
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    color: #05101d;
}
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
}
.about-visual {
    padding: 14px;
    border-radius: 28px;
}
.about-visual img {
    border-radius: 18px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
}
.contact-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.contact-pills span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #dde5fb;
}
.contact-form {
    padding: 24px;
    border-radius: 28px;
    display: grid;
    gap: 14px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}
.contact-form ::placeholder {
    color: #96a3c6;
}
.site-footer {
    padding: 28px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #c8d2e8;
}
.footer-links {
    display: flex;
    gap: 18px;
}
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 30px;
    background: rgba(3, 6, 18, 0.94);
    z-index: 100;
}
.lightbox.open {
    display: grid;
}
.lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

  .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  border-radius: 50%;
  transition: transform .2s ease, opacity .2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link-gradient i,
.social-link-gradient .svg-inline--fa {
  font-size: 24px;
  display: inline-block;
  background: linear-gradient(135deg, #35A8FF 0%, #8E5BFF 50%, #F06DFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 1180px) {
    .hero-grid,
    .cards-4,
    .values-grid,
    .trust-grid,
    .contact-grid,
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid,
    .portfolio-grid,
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid,
    .slide,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .hero-stage {
        min-height: 560px;
    }
    .hero-main {
        transform: none;
    }
}
@media (max-width: 820px) {
    .nav-links,
    .desktop-cta {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .hero-grid,
    .cards-4,
    .values-grid,
    .trust-grid,
    .services-grid,
    .portfolio-grid,
    .contact-grid,
    .hero-meta,
    .counter-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-top: 44px;
    }
    .hero h1,
    .subpage h1 {
        max-width: 12ch;
    }
    .hero-stage {
        min-height: auto;
    }
    .float-card {
        display: none;
    }
    .slide {
        display: none;
        position: relative;
        opacity: 1;
        transform: none;
    }
    .slide.active {
        display: grid;
    }
    .masonry.wide {
        grid-column: auto;
    }
    .section-head.split,
    .cta-banner,
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    color: #eef4ff;
}
.lang-switch:hover {
    border-color: rgba(120, 160, 255, 0.35);
    transform: translateY(-1px);
}
.counter-suffix {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.88;
}
.product-card {
    padding: 26px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 215, 255, 0.12);
    border: 1px solid rgba(17, 215, 255, 0.24);
    color: #c8f5ff;
    font-size: 0.88rem;
}
.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}
.tag-row {
    margin: 14px 0;
    color: #cfe0ff;
    font-size: 0.92rem;
}
.footer-wrap p {
    margin: 0.35rem 0 0;
    color: #aebad6;
    max-width: 52ch;
    line-height: 1.7;
}
.contact-copy h2 {
    margin: 8px 0 16px;
}
.nav-links.open a.active::after,
.nav-links.open a:hover::after {
    display: none;
}
@media (max-width: 1180px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 820px) {
    .header-tools {
        margin-left: auto;
    }
    .lang-switch {
        min-width: 42px;
        height: 42px;
        padding: 0 14px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        align-items: center;
    }
}

/* layout refinements for subpages, portfolio spacing and card rhythm */
.subpage {
    padding: 54px 0 28px;
}
.subpage .container {
    max-width: min(1080px, calc(100% - 40px));
}
.subpage h1 {
    max-width: 18ch;
    line-height: 1.03;
}
.subpage .lead {
    max-width: 78ch;
    font-size: 1.16rem;
    line-height: 1.82;
}
.section-head {
    margin-bottom: 36px;
}
.section-head.split {
    margin-bottom: 34px;
}
.section-head p + h2 {
    max-width: 18ch;
    line-height: 1.08;
}
.section-head p + h2 + p,
.section-head .lead {
    max-width: 74ch;
}
.filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 34px;
    padding-bottom: 2px;
}
.filter-btn {
    padding: 13px 18px;
}
.portfolio-grid {
    align-items: stretch;
}
.masonry {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.masonry img {
    flex: 0 0 auto;
}
.masonry-copy {
    padding: 24px 22px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.masonry-copy h3 {
    margin: 2px 0 0;
}
.masonry-copy p {
    margin: 0;
}
.masonry-copy .btn {
    margin-top: 10px;
    align-self: flex-start;
}
.tag-row {
    margin: 4px 0 2px;
    color: #cfe0ff;
    font-size: 0.92rem;
    line-height: 1.6;
}
.product-card {
    padding: 28px;
}
.product-actions {
    margin-top: 8px;
}
@media (max-width: 820px) {
    .subpage {
        padding: 42px 0 22px;
    }
    .subpage h1 {
        max-width: 14ch;
    }
    .subpage .lead {
        font-size: 1.06rem;
        line-height: 1.72;
    }
    .filter-row {
        margin-bottom: 26px;
    }
    .masonry-copy {
        padding: 20px 18px 24px;
    }
}

/* --- Pyxios visual refresh inspired by reference screenshot --- */
:root {
    --bg: #050814;
    --panel: rgba(10, 14, 28, 0.92);
    --line: rgba(138, 102, 255, 0.12);
    --text: #f4f6ff;
    --muted: #b9c3dd;
    --cyan: #2fa3ff;
    --violet: #8a56ff;
    --pink: #db6dff;
    --grad-main: linear-gradient(90deg, #f06dff 0%, #9b5dff 42%, #35a8ff 100%);
    --grad-pill: linear-gradient(90deg, #3291ff 0%, #8759ff 56%, #d763ff 100%);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
body {
    background: radial-gradient(circle at 14% 16%, rgba(53, 168, 255, 0.12), transparent 20%),
        radial-gradient(circle at 78% 18%, rgba(219, 109, 255, 0.13), transparent 22%),
        radial-gradient(circle at 62% 70%, rgba(79, 63, 255, 0.1), transparent 24%),
        linear-gradient(180deg, #040713 0%, #050915 34%, #040713 100%);
}
.glass {
    background: linear-gradient(180deg, rgba(12, 17, 34, 0.96), rgba(8, 11, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}
.site-header {
    background: rgba(4, 7, 19, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-links a {
    color: #edf1ff;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.nav-links a.active::after,
.nav-links a:hover::after {
    height: 3px;
    border-radius: 999px;
    background: var(--grad-main);
    box-shadow: 0 0 18px rgba(219, 109, 255, 0.28);
}
.hero h1,
.subpage h1 {
    line-height: 0.98;
    letter-spacing: -0.06em;
}
.gradient-text,
.hero h1 .gradient-text,
.subpage h1 .gradient-text,
.section h2 .gradient-text,
.cta-banner h2 .gradient-text {
    background: var(--grad-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-copy .lead {
    max-width: 58ch;
}
.btn {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--grad-pill);
    color: #fff;
    box-shadow: 0 16px 34px rgba(117, 86, 255, 0.24);
}
.btn-primary:hover {
    box-shadow: 0 20px 42px rgba(117, 86, 255, 0.34);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f2f4ff;
}
.btn-outline,
.filter-btn {
    background:
        linear-gradient(rgba(8, 11, 26, 0.94), rgba(8, 11, 26, 0.94)) padding-box,
        var(--grad-main) border-box;
    border: 1px solid transparent;
    color: #f5f7ff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.btn-outline:hover,
.filter-btn:hover {
    box-shadow: 0 16px 34px rgba(86, 76, 255, 0.2);
}
.desktop-cta {
    padding-inline: 26px;
    font-size: 0.96rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.desktop-cta::after {
    content: "→";
    display: inline-block;
    margin-left: 6px;
    color: #e48fff;
}
.eyebrow {
    color: #7fd5ff;
}
.meta-card,
.feature-card,
.service-card,
.value-card,
.package-card,
.product-card,
.masonry,
.counter-card,
.testimonial-card,
.contact-form,
.parallax-box,
.cta-banner {
    background: linear-gradient(180deg, rgba(12, 17, 34, 0.96), rgba(8, 11, 24, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.icon-box {
    background: linear-gradient(180deg, rgba(9, 13, 28, 0.96), rgba(10, 14, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #d98bff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(0, 0, 0, 0.2);
}
.feature-card:hover .icon-box,
.service-card:hover .icon-box,
.value-card:hover .icon-box,
.package-card:hover .icon-box {
    color: #60b9ff;
    border-color: rgba(124, 98, 255, 0.28);
}
.hero-actions .btn-primary,
.cta-actions .btn-primary,
.contact-form .btn-primary {
    min-width: 170px;
}
.cta-banner .btn-outline {
    background:
        linear-gradient(rgba(6, 9, 22, 0.94), rgba(6, 9, 22, 0.94)) padding-box,
        var(--grad-main) border-box;
}
.site-footer {
    padding: 34px 0 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(4, 7, 19, 0), rgba(4, 7, 19, 0.86));
}
.footer-wrap {
    align-items: center;
    gap: 26px;
}
.footer-links {
    flex-wrap: wrap;
    row-gap: 10px;
}
.footer-links a {
    color: #d6ddf5;
    opacity: 0.88;
    transition:
        opacity 0.18s ease,
        color 0.18s ease;
}
.footer-links a:hover {
    opacity: 1;
    color: #fff;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(8, 11, 26, 0.94), rgba(8, 11, 26, 0.94)) padding-box,
        var(--grad-main) border-box;
    border: 1px solid transparent;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.footer-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(86, 76, 255, 0.22);
}
.footer-socials svg {
    width: 18px;
    height: 18px;
    display: block;
}
.footer-socials path,
.footer-socials rect,
.footer-socials circle,
.footer-socials line,
.footer-socials polyline {
    stroke-linecap: round;
    stroke-linejoin: round;
}
.trust-grid span {
    background: rgba(255, 255, 255, 0.025);
}
@media (max-width: 980px) {
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-socials {
        margin-left: 0;
    }
}
@media (max-width: 820px) {
    .desktop-cta {
        display: none;
    }
    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}
