@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');

:root {
    --bg: #0B0B0F;
    --bg-soft: #14161d;
    --card: #1C1D24;
    --text: #F5F7FF;
    --muted: #B8BED3;
    --primary: #6F2BFF;
    --secondary: #00D1FF;
    --border: rgba(255, 255, 255, .08);
    --success: #2bd67b;
    --danger: #ff5d73;
    --shadow: 0 20px 50px rgba(0, 0, 0, .35);
    --radius: 20px;
    --container: 1200px;
    --header: 78px;
    --glow-primary: 0 0 30px rgba(111, 43, 255, .28);
    --glow-secondary: 0 0 30px rgba(0, 209, 255, .18);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(111, 43, 255, .18), transparent 30%),
        radial-gradient(circle at top right, rgba(0, 209, 255, .12), transparent 24%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button,
input,
select,
textarea {
    font: inherit
}

ul {
    padding-left: 18px
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: auto
}

.section {
    padding: 88px 0
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin: 0 0 14px;
    font-weight: 800;
}

.section-text {
    color: var(--muted);
    max-width: 760px;
    margin: 0 0 28px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(255, 255, 255, .03);
    margin-bottom: 18px;
    font-size: .92rem;
}

.grid {
    display: grid;
    gap: 24px
}

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

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

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

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
    font-size: 1.25rem
}

.muted {
    color: var(--muted)
}

.center {
    text-align: center
}

.accent {
    color: var(--secondary)
}

.primary {
    color: var(--primary)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(11, 11, 15, .72);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    color: var(--muted);
    font-size: .95rem;
}

.nav a:hover,
.nav a.active {
    color: var(--text)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #8e5cff);
    color: #fff;
    box-shadow: 0 14px 30px rgba(111, 43, 255, .28);
}

.btn-secondary {
    background: rgba(255, 255, 255, .03);
    border-color: var(--border);
    color: #fff;
}

.btn-whatsapp {
    background: #1faa59;
    color: #fff;
}

.btn-outline {
    border-color: rgba(0, 209, 255, .35);
    color: var(--secondary);
    background: rgba(0, 209, 255, .06);
}



.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: .98;
    margin: 0 0 18px;
    letter-spacing: -.03em;

}

.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 20px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.point {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}



.hero-float {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    display: grid;
    gap: 14px;
}

.float-card {
    background: rgba(11, 11, 15, .78);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.float-card strong {
    display: block;
    font-size: 1.15rem
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 26px 16px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.service-card,
.feature-card,
.testimonial-card,
.gallery-card {
    height: 100%;
}

.service-card p,
.feature-card p,
.testimonial-card p {
    color: var(--muted)
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 18px;
}

.gallery-card {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card.large {
    grid-row: span 2
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .45));
}

.gallery-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    font-weight: 700;
}

.cta-band {
    padding: 30px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(111, 43, 255, .2), rgba(0, 209, 255, .12)),
        var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.cta-band h3 {
    margin: 0;
    font-size: 1.7rem
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-weight: 600;
    font-size: .95rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: none;
    outline: none;
    min-height: 52px;
    border-radius: 14px;
    padding: 14px 16px;
    background: #11131a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
}

.field textarea {
    min-height: 150px;
    resize: vertical
}

.field.full {
    grid-column: 1 / -1
}

.form-note {
    color: var(--muted);
    font-size: .92rem;
}

.form-status {
    margin-top: 12px;
    font-weight: 600;
}

.form-status.success {
    color: var(--success)
}

.form-status.error {
    color: var(--danger)
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item strong {
    display: block
}

.map-card iframe {
    width: 100%;
    min-height: 360px;
    border: none;
    border-radius: 20px;
    filter: grayscale(.2) contrast(1.1);
}

.footer {
    padding: 34px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.credit a {
    color: var(--secondary);
    font-weight: 700;
}

.page-hero {
    padding: 72px 0 40px;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p {
    max-width: 760px;
    color: var(--muted);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}

.modal.open {
    display: flex
}

.modal-panel {
    width: min(720px, 100%);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.close-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1050;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.45rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
}

.legal {
    font-size: .9rem;
    color: var(--muted);
}

@media (max-width: 1024px) {

    .hero-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .stats,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .nav {
        position: fixed;
        top: var(--header);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        background: rgba(11, 11, 15, .96);
        border: 1px solid var(--border);
        border-radius: 18px;
    }

    .nav.open {
        display: flex
    }

    .menu-btn {
        display: inline-grid;
        place-items: center
    }

    .header-actions .btn-secondary {
        display: none
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .stats,
    .form-grid,
    .hero-points,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px
    }

    .section {
        padding: 40px 0
    }

    .hero-visual {
        min-height: 360px
    }

    .cta-band {
        padding: 24px
    }
}

/* ========= V2 PREMIUM ANIMATIONS ========= */


body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(111, 43, 255, .10), transparent 22%),
        radial-gradient(circle at 85% 10%, rgba(0, 209, 255, .08), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(111, 43, 255, .05), transparent 28%);
    z-index: -1;
}

.section,
.card,
.hero h1,
.hero p,
.hero-actions,
.page-hero h1,
.page-hero p {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .8s cubic-bezier(.2, .65, .2, 1),
        transform .8s cubic-bezier(.2, .65, .2, 1);
}

.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hero h1.in-view {
    transition-delay: .05s;
}

.hero p.in-view {
    transition-delay: .12s;
}

.hero-actions.in-view {
    transition-delay: .18s;
}

.card {
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        opacity .8s cubic-bezier(.2, .65, .2, 1),
        transform .8s cubic-bezier(.2, .65, .2, 1);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 209, 255, .22);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .32),
        var(--glow-secondary);
}



@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.01);
    }
}

.badge {
    box-shadow: var(--glow-secondary);
}

.btn-primary:hover {
    box-shadow:
        0 18px 40px rgba(111, 43, 255, .30),
        var(--glow-primary);
}

.btn-outline:hover,
.btn-secondary:hover {
    border-color: rgba(0, 209, 255, .35);
    box-shadow: var(--glow-secondary);
}

.logo span {
    background: linear-gradient(90deg, #fff, #d9dfff, #9feaff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 .primary,
.hero h1 .accent {
    text-shadow: 0 0 24px rgba(111, 43, 255, .24);
}

.gallery-card {
    transform: translateZ(0);
}

.gallery-card img,
.gallery-card video {
    transition: transform .8s ease, filter .5s ease;
}

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.04);
}

.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width .25s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.cta-band {
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, rgba(111, 43, 255, .18), rgba(0, 209, 255, .08), rgba(111, 43, 255, .18));
    filter: blur(28px);
    z-index: 0;
}

.cta-band>* {
    position: relative;
    z-index: 1;
}

.whatsapp-float {
    animation: pulseFloat 2.2s infinite;
}

@keyframes pulseFloat {
    0% {
        transform: scale(1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 14px 32px rgba(31, 170, 89, .38);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
    }
}

.hero-parallax {
    transition: transform .15s linear;
    will-change: transform;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #c4ccff, #79e7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .section,
    .card,
    .hero h1,
    .hero p,
    .hero-actions,
    .page-hero h1,
    .page-hero p {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Testimonials marquee ===== */

.reviews-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviewsScroll 34s linear infinite;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

.review-slide {
    width: 380px;
    min-height: 220px;
    flex: 0 0 auto;
}

.review-slide h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.review-slide p {
    color: var(--muted);
    margin: 0;
}

@keyframes reviewsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:760px) {
    .review-slide {
        width: 300px;
    }
}

/* -------CUSTOM FONT ---------------- */

h1,h2,h3 {
    font-family: "Sora";
}

.section-title, .page-hero h1, .hero h1, .cta-band h3, .stat strong, .logo span, .badge{
      font-family: "Sora";
}

/* ===== 404 premium ===== */

.error-404-section{
  min-height:calc(100vh - 160px);
  display:flex;
  align-items:center;
}

.error-404-card{
  text-align:center;
  padding:56px 28px;
  max-width:900px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
}

.error-404-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle, rgba(111,43,255,.14), transparent 35%),
    radial-gradient(circle, rgba(0,209,255,.10), transparent 32%);
  filter:blur(30px);
  z-index:0;
}

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

.error-code{
  font-size:clamp(5rem,15vw,10rem);
  line-height:1;
  font-weight:800;
  margin:12px 0 18px;
  letter-spacing:-.05em;
  background:linear-gradient(135deg, #ffffff 0%, #bfa8ff 40%, #68e6ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 30px rgba(111,43,255,.12);
}

.error-404-card h1{
  margin:0 0 14px;
  font-size:clamp(2rem,5vw,3.5rem);
}



.hero-mini-stat strong{
  display:block;
  font-size:1rem;
  margin-bottom:6px;
  color:#fff;
}

.hero-mini-stat span{
  color:var(--muted);
  font-size:.92rem;
}



.hero-services-list li{
  position:relative;
  padding-left:18px;
  color:var(--muted);
  font-size:.95rem;
}

.hero-services-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow:0 0 12px rgba(0,209,255,.35);
}


.hero-review-strip:hover .hero-review-track{
  animation-play-state:paused;
}

.hero {
    padding: 90px 0 70px;
}

@media (max-width: 1024px){
  .hero-mini-stats{
    grid-template-columns:1fr;
  }

  .hero-services-list{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .hero-panel{
    padding:16px;
  }

  .hero-chip{
    min-height:34px;
    font-size:.82rem;
  }

  .hero-review-item{
    font-size:.88rem;
  }

  .hero-points{
    display: none;
  }

  .hero-visual{
    display: none;
  }

 .nav.open a{
    min-width: 100%;
 }
 .hero {
    padding: 40px 0 20px;
}
}


.hero-chip{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:.88rem;
  font-weight:600;
  backdrop-filter:blur(8px);
}

.hero-chip-secondary{
  color:var(--secondary);
  border-color:rgba(0,209,255,.22);
  background:rgba(0,209,255,.08);
}



.hero-mini-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.hero-mini-stat{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
}

.hero-mini-stat strong{
  display:block;
  font-size:1rem;
  margin-bottom:6px;
  color:#fff;
}

.hero-mini-stat span{
  color:var(--muted);
  font-size:.92rem;
}

.hero-services-box{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
}

.hero-services-title{
  font-weight:700;
  margin-bottom:10px;
  color:#fff;
}



.hero-services-list li{
  position:relative;
  padding-left:18px;
  color:var(--muted);
  font-size:.95rem;
}

.hero-services-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow:0 0 12px rgba(0,209,255,.35);
}


.hero-review-strip{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.03);
  padding:14px 0;
  mask-image:linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.hero-review-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation:heroReviewScroll 20s linear infinite;
}

.hero-review-item{
  white-space:nowrap;
  color:#dfe5ff;
  font-size:.94rem;
  font-weight:500;
}

.hero-review-strip:hover .hero-review-track{
  animation-play-state:paused;
}

@keyframes heroReviewScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@media (max-width: 1024px){
  .hero-mini-stats{
    grid-template-columns:1fr;
  }

  .hero-services-list{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .hero-panel{
    padding:16px;
  }

  .hero-chip{
    min-height:34px;
    font-size:.82rem;
  }

  .hero-review-item{
    font-size:.88rem;
  }
}


.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-panel-clean {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55)),
        radial-gradient(circle at 20% 20%, rgba(111, 43, 255, .16), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(0, 209, 255, .14), transparent 28%),
        url("../assets/hero.jpg") center/cover no-repeat;
}

.hero-top-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-chip-secondary {
    color: var(--secondary);
    border-color: rgba(0, 209, 255, .22);
    background: rgba(0, 209, 255, .08);
}

.hero-center-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.hero-mini-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(11, 11, 15, .45);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.hero-mini-stat strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: #fff;
}

.hero-mini-stat span {
    color: var(--muted);
    font-size: .92rem;
}

.hero-bottom-content {
    display: grid;
    gap: 14px;
}

.float-card {
    background: rgba(11, 11, 15, .78);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.float-card strong {
    display: block;
    font-size: 1.15rem;
}

.hero-review-strip {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(11, 11, 15, .72);
    padding: 14px 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.hero-review-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: heroReviewScroll 20s linear infinite;
}

.hero-review-item {
    white-space: nowrap;
    color: #dfe5ff;
    font-size: .94rem;
    font-weight: 500;
}

.hero-review-strip:hover .hero-review-track {
    animation-play-state: paused;
}

@keyframes heroReviewScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .hero-mini-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hero-visual {
        min-height: 460px;
    }

    .hero-panel-clean {
        padding: 16px;
    }

    .hero-chip {
        min-height: 34px;
        font-size: .82rem;
    }

    .hero-review-item {
        font-size: .88rem;
    }
}