/**
 * NEOXWEB — Professional homepage hero (Unified-style coil background)
 * Desktop unchanged layout · Mobile shows coil behind text
 */

.hero-section--pro {
    position: relative;
    min-height: min(100vh, 920px);
    align-items: flex-start;
    padding-top: 0;
    background: #000;
    overflow: hidden;
    display: flex;
}

.hero-tech-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background-color: #000;
}

.hero-tech-bg img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    min-width: 108%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top right;
    transform: scale(1.04);
    transform-origin: top right;
    display: block;
    animation: none;
}

.hero-globe-orbit {
    display: none !important;
}

.hero-section--pro .hero-bg-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.15) 55%, transparent 78%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}
@import "tailwindcss" source(none);
@source "../src";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

/*
 * Design system definition.
 *
 * The @theme inline block maps CSS custom properties to Tailwind utility
 * classes (e.g. --color-primary -> bg-primary, text-primary).
 *
 * The :root and .dark blocks define the actual color values using oklch.
 * All colors MUST use oklch format.
 *
 * To add a new semantic color:
 * 1. Add the variable to :root (light value) and .dark (dark value)
 * 2. Register it in @theme inline as --color-<name>: var(--<name>)
 */

@theme inline {
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-ring-offset-background: var(--background);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

:root {
  --radius: 0.625rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.129 0.042 264.695);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.129 0.042 264.695);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.129 0.042 264.695);
  --primary: oklch(0.208 0.042 265.755);
  --primary-foreground: oklch(0.984 0.003 247.858);
  --secondary: oklch(0.968 0.007 247.896);
  --secondary-foreground: oklch(0.208 0.042 265.755);
  --muted: oklch(0.968 0.007 247.896);
  --muted-foreground: oklch(0.554 0.046 257.417);
  --accent: oklch(0.968 0.007 247.896);
  --accent-foreground: oklch(0.208 0.042 265.755);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(0.929 0.013 255.508);
  --input: oklch(0.929 0.013 255.508);
  --ring: oklch(0.704 0.04 256.788);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.984 0.003 247.858);
  --sidebar-foreground: oklch(0.129 0.042 264.695);
  --sidebar-primary: oklch(0.208 0.042 265.755);
  --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
  --sidebar-accent: oklch(0.968 0.007 247.896);
  --sidebar-accent-foreground: oklch(0.208 0.042 265.755);
  --sidebar-border: oklch(0.929 0.013 255.508);
  --sidebar-ring: oklch(0.704 0.04 256.788);
}

.dark {
  --background: oklch(0.129 0.042 264.695);
  --foreground: oklch(0.984 0.003 247.858);
  --card: oklch(0.208 0.042 265.755);
  --card-foreground: oklch(0.984 0.003 247.858);
  --popover: oklch(0.208 0.042 265.755);
  --popover-foreground: oklch(0.984 0.003 247.858);
  --primary: oklch(0.929 0.013 255.508);
  --primary-foreground: oklch(0.208 0.042 265.755);
  --secondary: oklch(0.279 0.041 260.031);
  --secondary-foreground: oklch(0.984 0.003 247.858);
  --muted: oklch(0.279 0.041 260.031);
  --muted-foreground: oklch(0.704 0.04 256.788);
  --accent: oklch(0.279 0.041 260.031);
  --accent-foreground: oklch(0.984 0.003 247.858);
  --destructive: oklch(0.704 0.191 22.216);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.551 0.027 264.364);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.208 0.042 265.755);
  --sidebar-foreground: oklch(0.984 0.003 247.858);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
  --sidebar-accent: oklch(0.279 0.041 260.031);
  --sidebar-accent-foreground: oklch(0.984 0.003 247.858);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.551 0.027 264.364);
}

@layer base {
  * {
    border-color: var(--color-border);
  }

  body {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
}

/* ==================== Testimonials (NEOXWEB) ==================== */
.tm-section {
  position: relative;
  overflow: hidden;
  background: #0a0f0d;
  padding: 5rem 0;
  color: #fff;
}
.tm-section::before,
.tm-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tm-section::before {
  background:
    radial-gradient(600px circle at 20% 10%, rgba(74, 222, 128, 0.18), transparent 60%),
    radial-gradient(500px circle at 85% 90%, rgba(45, 212, 191, 0.15), transparent 60%);
}
.tm-section::after {
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}
.tm-section > .container {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) {
  .tm-section { padding: 7rem 0; }
}

.tm-header { max-width: 42rem; margin: 0 auto; text-align: center; }
.tm-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.05);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6ee7b7;
}
.tm-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}
.tm-header h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.text-neox-green {
  background: linear-gradient(90deg, #6ee7b7, #4ade80, #5eead4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tm-desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* Slider */
.tm-slider-wrapper {
  position: relative;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: 0 clamp(2.75rem, 8vw, 3.5rem);
}

.tm-slider-container {
  overflow: hidden;
  border-radius: 1.25rem;
  width: 100%;
}

.tm-slider-track {
  display: flex;
  gap: var(--tm-gap, 1rem);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Cards — mobile: 1 | tablet: 2 | laptop: 3 */
.tm-card,
.tm-card-body {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  text-align: center;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (min-width: 768px) {
  .tm-card,
  .tm-card-body {
    flex: 0 0 calc((100% - var(--tm-gap, 1rem)) / 2);
    padding: 1.35rem 1.15rem;
    border-radius: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .tm-card,
  .tm-card-body {
    flex: 0 0 calc((100% - 2 * var(--tm-gap, 1rem)) / 3);
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
    gap: 0.85rem;
  }
}

.tm-avatar-box {
  position: relative;
  flex-shrink: 0;
}

.tm-avatar-box img,
.tm-avatar-box .tm-avatar-fallback {
  display: grid;
  place-items: center;
  width: clamp(4.5rem, 14vw, 6rem);
  height: clamp(4.5rem, 14vw, 6rem);
  border-radius: 1rem;
  object-fit: cover;
  color: #0a0f0d;
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  box-shadow: 0 10px 40px -10px rgba(74, 222, 128, 0.6);
}

@media (min-width: 640px) {
  .tm-avatar-box img,
  .tm-avatar-box .tm-avatar-fallback {
    width: 6rem;
    height: 6rem;
    border-radius: 1.15rem;
    font-size: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .tm-avatar-box img,
  .tm-avatar-box .tm-avatar-fallback {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 1rem;
    font-size: 1.1rem;
  }
}

.tm-avatar-badge {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  background: #0a0f0d;
  color: #6ee7b7;
}

.tm-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.tm-quote-start,
.tm-quote-end { display: none; }

.tm-text {
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (min-width: 640px) {
  .tm-text { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .tm-text {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

.tm-meta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.tm-name { font-size: 1rem; font-weight: 600; color: #fff; }
.tm-company { font-size: 0.875rem; color: rgba(110, 231, 183, 0.85); }

/* Arrows */
.tm-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.25rem, 7vw, 3rem);
  height: clamp(2.25rem, 7vw, 3rem);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tm-arrow:hover,
.tm-arrow:focus-visible {
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(74, 222, 128, 0.1);
  color: #6ee7b7;
  outline: none;
}

.tm-arrow-left {
  left: 0;
  transform: translateY(-50%);
}

.tm-arrow-right {
  right: 0;
  transform: translateY(-50%);
}

.tm-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile arrows row (optional duplicate controls) */
.tm-arrows-mobile {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tm-arrows-mobile .tm-arrow {
  position: static;
  transform: none;
}

/*=============================
Vision & Why Choose
==============================*/

.about-section,
.why-section{
    padding:90px 0;
}

.about-grid,
.why-grid{

    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:70px;

    align-items:center;
}

.about-tag{

    display:inline-block;

    color:#9FE870;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.85rem;

    margin-bottom:15px;
}

.about-content h2,
.why-content h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:20px;

    line-height:1.2;
}

.about-content p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:18px;
}

.about-image,
.why-image{

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 25px 50px rgba(0,0,0,.25);
}

.about-photo{

    width:100%;

    display:block;

    height:100%;

    object-fit:cover;

    transition:.5s;
}

.about-image:hover img,
.why-image:hover img{

    transform:scale(1.05);
}

/*====================
Why List
=====================*/

.why-list{

    list-style:none;

    padding:0;

    margin:35px 0 0;
}

.why-list li{

    display:flex;

    gap:18px;

    align-items:flex-start;

    padding:20px;

    margin-bottom:18px;

    border-radius:18px;

    background:#131b27;

    transition:.35s;
}

.why-list li:hover{

    transform:translateY(-5px);

    background:#192333;
}

.why-list i{

    width:58px;

    height:58px;

    flex-shrink:0;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#22c55e;

    color:#fff;

    font-size:22px;
}

.why-list strong{

    display:block;

    margin-bottom:8px;

    font-size:1.05rem;

    color:#fff;
}

.why-list p{

    margin:0;

    color:#cbd5e1;

    line-height:1.7;
}


/*====================
Tablet
=====================*/

@media(max-width:991px){

.about-grid,
.why-grid{

    grid-template-columns:1fr;

    gap:45px;
}

.about-image,
.why-image{

    max-width:700px;

    margin:auto;
}

}


/*====================
Mobile
=====================*/

@media(max-width:768px){

.about-section,
.why-section{

    padding:65px 0;
}

.about-content h2,
.why-content h2{

    font-size:2rem;
}

.why-list li{

    padding:18px;

    gap:15px;
}

.why-list i{

    width:50px;

    height:50px;

    font-size:18px;
}

}


/*====================
Small Mobile
=====================*/

@media(max-width:480px){

.about-content h2,
.why-content h2{

    font-size:1.7rem;
}

.about-content p{

    font-size:.95rem;
}

.why-list li{

    flex-direction:column;

    text-align:center;

    align-items:center;
}

}
@media (min-width: 768px) {
  .tm-arrows-mobile { display: none; }
}

/* Dots */
.tm-dots {
  margin-top: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tm-dot {
  width: 0.5rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tm-dot:hover { background: rgba(255, 255, 255, 0.4); }

.tm-dot.active-dot {
  width: 2rem;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.8);
}

@media (max-width: 480px) {
  .tm-section > .container {
    padding-inline: 1rem;
  }

  .tm-header h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .tm-desc {
    font-size: 0.95rem;
  }

  .tm-slider-wrapper {
    padding-inline: 2.25rem;
  }
}


@media (min-width: 1024px) {
    .hero-section--pro.hero-section--neoxweb .hero-grid--bg {
        grid-template-columns: 1fr !important;
    }

    .hero-section--pro .hero-tech-bg img {
        min-width: 105%;
        height: 100%;
        top: 0;
        object-position: top right;
    }
}

.hero-section--pro .hero-grid--bg {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: start;
    justify-items: start;
    width: 100%;
    max-width: min(1200px, 100%);
    margin: 0;
    margin-right: auto;
    padding: var(--nav-h, 72px) clamp(1rem, 3vw, 2rem) 0;
    min-height: auto;
}

.hero-section--pro .hero-copy {
    max-width: min(580px, 52vw);
    text-align: left;
}

.hero-section--pro .hero-title {
    font-size: clamp(2rem, 4.8vw, 3.65rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 11em;
}

.hero-section--pro .hero-title-accent {
    display: inline;
    color: #4ade80;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-section--pro .hero-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 32rem;
    margin-top: 1.25rem;
}

.hero-section--pro .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff !important; /* White text */
    text-decoration: none;
    background: #22c55e;
    border: 2px solid #22c55e;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: #4ade80;
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff !important;
    
    text-decoration: none;
    background: transparent;
    border: 2px solid #22c55e;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-hero-outline:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.hero-section--pro .hero-neoxweb-bg {
    display: none !important;
}

.hero-section--pro .hero-particles-canvas {
    z-index: 2;
    opacity: 0.72;
    pointer-events: none;
}

.hero-photo-bg,
.hero-coil-bg {
    display: none !important;
}

.hero-section--pro .hero-visual-art {
    display: none !important;
}

.neox-service-card__media .visual-art-wrap {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    border: none;
    background: linear-gradient(145deg, rgba(14, 18, 14, 0.95), rgba(5, 8, 6, 0.98));
}

.neox-service-card__img {
    width: 100%;
    height: 100%;
    min-height: 10rem;
    object-fit: cover;
    display: block;
}

.home-services-block {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.home-page .neox-service-card__media {
    min-height: 10rem;
}

.neox-service-card__media .visual-art {
    padding: 1.25rem;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(74, 222, 128, 0.15));
}

.project-card .visual-art-wrap--project {
    border-radius: 0;
    min-height: 200px;
}

.nx-team-card__img .visual-art-wrap {
    aspect-ratio: 4 / 3;
    border: none;
    border-radius: 0;
}

.nx-team-card__img .visual-art {
    padding: 1.5rem;
}
.hero-actions a.btn-hero-primary {
    color: #fff !important;
}

@media (max-width: 900px) {
    .hero-section--pro {
        min-height: min(92vh, 800px);
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .hero-tech-bg img {
        min-width: 112%;
        height: 100%;
        top: 0;
        object-position: top right;
        animation: none;
    }

    .hero-section--pro .hero-grid--bg,
    .nx-page-hero__inner,
    .contact-hero-inner,
    .svc-banner-hero__inner {
        padding-top: calc(var(--nav-h, 72px) + clamp(1.75rem, 4vw, 2.75rem));
    }

    .neoxweb-site .web-hero > .container,
    .neoxweb-site .web-hero .web-hero-grid {
        padding-top: calc(var(--nav-h, 72px) + clamp(2rem, 4.5vw, 3.75rem)) !important;
    }

    body.nx-app-body.home-page {
        padding-top: calc(var(--nx-header-h, 3.5rem) + var(--nx-safe-top, 0px)) !important;
    }

    body.nx-app-body.home-page main {
        padding-top: 0 !important;
    }

    body.nx-app-body .hero-section--pro {
        padding-top: 0 !important;
        margin-top: 0 !important;
        min-height: auto !important;
        padding-bottom: 1rem !important;
    }

    body.nx-app-body.home-page .hero-section--pro {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        margin-top: calc(-1 * (var(--nx-header-h, 3.5rem) + var(--nx-safe-top, 0px))) !important;
        padding-top: calc(var(--nx-header-h, 3.5rem) + var(--nx-safe-top, 0px) + 0.2rem) !important;
        padding-bottom: 0.75rem !important;
        align-items: flex-start !important;
        overflow: hidden;
    }

    body.nx-app-body.home-page .hero-grid--bg {
        width: min(32rem, calc(100% - 2rem));
        margin-left: 1rem;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
        align-items: flex-start !important;
        align-content: flex-start !important;
        min-height: auto !important;
        padding-top: 0 !important;
    }

    body.nx-app-body.home-page .hero-copy {
        width: 100%;
        padding-top: 0;
    }

    body.nx-app-body.home-page .hero-section--pro .hero-text {
        margin-top: 0.65rem;
    }

    body.nx-app-body.home-page .hero-section--pro .hero-actions {
        margin-top: 0.85rem;
    }
    body.nx-app-body.home-page .hero-tech-bg,
    body.nx-app-body.home-page .hero-bg-overlay,
    body.nx-app-body.home-page .hero-neoxweb-bg,
    body.nx-app-body.home-page .hero-particles-canvas {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        margin: 0 !important;
    }

    body.nx-app-body.home-page .hero-tech-bg img {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
        transform-origin: center center !important;
        animation: none !important;
    }

    body.nx-app-body.home-page .hero-globe-orbit {
        left: 50%;
        top: 42%;
        width: min(72vw, 280px);
        height: min(72vw, 280px);
    }

    body.nx-app-body.home-page .hero-grid--bg {
        width: min(32rem, calc(100% - 2rem));
        margin-left: 1rem;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body.nx-app-body.home-page .hero-particles-canvas {
        opacity: 0.72 !important;
    }

    .hero-globe-orbit {
        left: 50%;
        top: 40%;
        width: min(68vw, 300px);
        height: min(68vw, 300px);
    }

    .hero-section--pro .hero-statcards {
        display: none;
    }

    body.nx-app-body.home-page .trusted-section {
        margin-top: 0;
        padding-top: 0.75rem;
    }

    .home-page .home-services-block {
        padding-top: 1.25rem;
        padding-bottom: 2rem;
    }

    .home-page .trusted-section--compact {
        padding: 1rem 0 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .home-page .trusted-section--compact .trusted-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .home-page .trusted-section--compact .trusted-grid::-webkit-scrollbar {
        display: none;
    }

    .home-page .trusted-section--compact .trusted-item {
        flex: 0 0 auto;
        min-height: auto;
        padding: 0.55rem 0.9rem;
        font-size: 0.72rem;
        white-space: nowrap;
        border-radius: 999px;
    }

    .home-page .neox-service-cards {
        gap: 1rem;
    }

    .home-page .neox-service-card__media {
        min-height: 10.5rem;
    }

    .neox-service-card__media .visual-art {
        padding: 0;
        object-fit: cover;
        filter: none;
    }
}

@media (max-width: 768px) {
    .hero-section--pro {
        min-height: auto;
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }

    .hero-section--pro .hero-grid--bg,
    .hero-section--pro.hero-section--neoxweb .hero-grid--bg {
        padding-top: calc(var(--nav-h, 72px) + 1rem);
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }

    .hero-section--pro .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-section--pro .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
        max-width: 100%;
        line-height: 1.1;
    }

    .hero-section--pro .hero-text {
        font-size: 0.96rem;
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-section--pro .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        margin-top: 1.5rem;
    }

    .hero-section--pro .hero-actions .btn-hero-primary,
    .hero-section--pro .hero-actions .btn-hero-outline {
        width: 100%;
        min-width: 100%;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
    }

    .hero-section--pro .hero-tech-bg img {
        object-position: center top;
        min-width: 100%;
    }
}

/* ── Live homepage parity (neoxweb.pages.dev) ── */
.hero-section--pro .hero-kicker {
    margin-top: 1.75rem;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 600;
    color: rgba(74, 222, 128, 0.92);
    letter-spacing: 0.02em;
    max-width: 28rem;
}

.home-page .home-team-link {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-page .testimonial-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
    margin-inline: auto;
}

.home-page .testimonial-slider .slide {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.home-page .trusted-section__title {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.home-page .trusted-section--compact .trusted-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 520px;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .home-page .testimonial-slider {
        grid-template-columns: 1fr;
    }
}
