
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: "Inter", sans-serif;
      color: #fff;
      background:
        radial-gradient(circle at top left, rgba(0, 255, 255, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 0, 170, 0.18), transparent 35%),
        #05070d;
      overflow-x: hidden;
      user-select: none;
      -webkit-user-select: none;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
      mask-image: linear-gradient(to bottom, #000, transparent 85%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .navbar {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1180px, calc(100% - 28px));
      height: 74px;
      padding: 0 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 50;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 24px;
      background: rgba(8, 12, 24, 0.72);
      backdrop-filter: blur(22px);
      box-shadow: 0 20px 70px rgba(0,0,0,0.35);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 1px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: linear-gradient(135deg, #00eaff, #ff2bd6);
      box-shadow: 0 0 28px rgba(0,234,255,0.45);
      color: #05070d;
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.76);
    }

    .nav-links a:hover {
      color: #00eaff;
    }

    .book-btn {
      padding: 13px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, #00eaff, #ff2bd6);
      color: #05070d;
      font-weight: 800;
      box-shadow: 0 0 30px rgba(0,234,255,0.25);
    }

    .menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      border: 0;
      border-radius: 14px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-size: 1.35rem;
      cursor: pointer;
    }

    .hero {
      min-height: 100vh;
      padding: 130px 6vw 70px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 42px;
    }

    .hero-content {
      max-width: 720px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      margin-bottom: 22px;
      border-radius: 999px;
      color: #bffcff;
      border: 1px solid rgba(0,234,255,0.25);
      background: rgba(0,234,255,0.08);
      font-size: 0.9rem;
    }

    .badge span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #00eaff;
      box-shadow: 0 0 14px #00eaff;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 7.3rem);
      line-height: 0.93;
      letter-spacing: -5px;
      font-weight: 900;
    }

    .gradient-text {
      background: linear-gradient(135deg, #fff, #00eaff 40%, #ff2bd6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      width: min(620px, 100%);
      margin: 24px 0 34px;
      color: rgba(255,255,255,0.72);
      font-size: clamp(1rem, 2vw, 1.18rem);
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .primary-btn,
    .secondary-btn {
      padding: 16px 22px;
      border-radius: 18px;
      font-weight: 800;
    }

    .primary-btn {
      background: linear-gradient(135deg, #00eaff, #ff2bd6);
      color: #05070d;
      box-shadow: 0 0 34px rgba(255,43,214,0.22);
    }

    .secondary-btn {
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.07);
      color: #fff;
    }

    .hero-card {
      position: relative;
      min-height: 620px;
      border-radius: 42px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06);
      box-shadow: 0 30px 90px rgba(0,0,0,0.45);
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 620px;
      object-fit: cover;
      display: block;
      filter: saturate(1.15) contrast(1.05);
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5,7,13,0.9), transparent 55%);
    }

    .floating-panel {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      padding: 20px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(5, 7, 13, 0.55);
      backdrop-filter: blur(18px);
    }

    .floating-panel h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .floating-panel p {
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .section {
      padding: 70px 6vw;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
      margin-bottom: 26px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 4rem);
      letter-spacing: -2px;
      line-height: 1;
    }

    .section-header p {
      max-width: 440px;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    .slider-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,0.13);
      background: rgba(255,255,255,0.05);
      padding: 18px;
    }

    .slider {
      display: flex;
      gap: 18px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
      -webkit-user-select: none;
    }

    .slider.dragging {
      cursor: grabbing;
      scroll-behavior: auto;
      scroll-snap-type: none;
    }

    .slider:active {
      cursor: grabbing;
    }

    .slider.slider-hinting .slide {
      animation: sliderPeek 1.2s ease both;
    }

    .slider::-webkit-scrollbar {
      display: none;
    }

    @keyframes sliderPeek {
      0%, 100% {
        transform: translateX(0);
      }

      35% {
        transform: translateX(-28px);
      }

      65% {
        transform: translateX(10px);
      }
    }

    .slide {
      position: relative;
      flex: 0 0 clamp(260px, 34vw, 430px);
      height: 450px;
      border-radius: 28px;
      overflow: hidden;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      background: #111;
      contain: layout paint style;
      content-visibility: auto;
      contain-intrinsic-size: 430px 530px;
      user-select: none;
      -webkit-user-select: none;
    }

    .slide.wide {
      flex-basis: clamp(320px, 48vw, 660px);
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      transition: transform 0.25s ease;
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
      -webkit-user-drag: none;
    }

    .slide:hover img {
      transform: scale(1.08);
    }

    @media (prefers-reduced-motion: reduce) {
      .slider.slider-hinting .slide {
        animation: none;
      }
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.82), transparent 58%);
    }

    .slide-info {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 2;
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
    }

    .slide-info small {
      color: #00eaff;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .slide-info h3 {
      margin-top: 7px;
      font-size: 1.6rem;
    }

    .slider-controls {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 16px;
    }

    .slider-controls button {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 16px;
      background: rgba(255,255,255,0.08);
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      padding: 28px;
      min-height: 220px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.13);
      background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }

    .service-card span {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 22px;
      border-radius: 18px;
      background: rgba(0,234,255,0.14);
      color: #00eaff;
      font-size: 1.4rem;
    }

    .service-card h3 {
      font-size: 1.35rem;
      margin-bottom: 10px;
    }

    .service-card p {
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    .cta {
      margin: 70px 6vw;
      padding: 58px;
      border-radius: 42px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.15);
      background:
        linear-gradient(135deg, rgba(0,234,255,0.12), rgba(255,43,214,0.12)),
        rgba(255,255,255,0.05);
    }

    .cta h2 {
      font-size: clamp(2.2rem, 5vw, 5rem);
      letter-spacing: -3px;
      margin-bottom: 18px;
    }

    .cta p {
      max-width: 620px;
      margin: 0 auto 28px;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
    }

    .contact-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 26px;
    }

    .whatsapp-btn,
    .tiktok-btn {
      padding: 16px 22px;
      border-radius: 18px;
      font-weight: 800;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.07);
      color: #fff;
    }

    .whatsapp-btn:hover,
    .tiktok-btn:hover,
    .secondary-btn:hover {
      border-color: rgba(0,234,255,0.5);
      color: #00eaff;
    }

    .location-box {
      max-width: 720px;
      margin: 0 auto;
      padding: 22px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(16px);
    }

    .location-box small {
      display: block;
      margin-bottom: 8px;
      color: #00eaff;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .location-box h3 {
      font-size: clamp(1.3rem, 3vw, 2rem);
      margin-bottom: 8px;
    }

    .location-box p {
      margin: 0;
      max-width: 100%;
    }

    footer {
      padding: 35px 6vw;
      color: rgba(255,255,255,0.55);
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .hero-card,
      .hero-card img {
        min-height: 520px;
      }

      .services {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .navbar {
        height: auto;
        padding: 14px;
        align-items: flex-start;
      }

      .menu-btn {
        display: block;
      }

      .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(8, 12, 24, 0.96);
        border: 1px solid rgba(255,255,255,0.12);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a,
      .book-btn {
        padding: 13px 15px;
      }

      .hero {
        padding: 120px 18px 50px;
      }

      .hero h1 {
        letter-spacing: -3px;
      }

      .section {
        padding: 52px 18px;
      }

      .section-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .slide,
      .slide.wide {
        flex-basis: 82vw;
        height: 760px;
      }

      .cta {
        margin: 50px 18px;
        padding: 38px 22px;
      }
    }

    @media (max-width: 420px) {
      .hero-card,
      .hero-card img {
        min-height: 430px;
      }

      .slide,
      .slide.wide {
        height: 680px;
      }
    }
