
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #e30044;
      --pink-hover:  #c20b42;
      --pink-soft:   rgba(210,34,93,0.06);
      --pink-mid:    rgba(210,34,93,0.12);
      --pink-light:  rgba(210,34,93,0.04);
      --white:       #ffffff;
      --off-white:   #faf9f8;
      --warm-gray:   #f5f3f0;
      --dark:        #1a1919;
      --dark-mid:    #2c2b2b;
      --gray-light:  #f7f5f2;
      --gray-mid:    #e8e4df;
      --gray-text:   #7a7674;
      --gray-subtle: #c4bfba;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg-3); }
  ::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

    /* ===================== HEADER ===================== */
    header {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo img { height: 90px; }

    nav.desktop-nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      position: relative;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: var(--dark);
      text-decoration: none;
      padding: 8px 13px;
      border-radius: 6px;
      transition: color 0.2s ease, background 0.2s ease;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--pink);
      background: var(--pink-soft);
    }

    .nav-link .ti-chevron-down {
      font-size: 11px;
      transition: transform 0.22s ease;
      margin-top: 1px;
    }

    .nav-item { position: relative; }

    .nav-item:hover > .nav-link .ti-chevron-down,
    .nav-item:focus-within > .nav-link .ti-chevron-down { transform: rotate(180deg); }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: var(--white);
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: 10px;
      padding: 6px;
      min-width: 190px;
      box-shadow: 0 10px 36px rgba(0,0,0,0.13);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown a {
      display: block;
      padding: 9px 14px;
      font-size: 13px;
      font-family: 'Open Sans', sans-serif;
      color: var(--dark);
      text-decoration: none;
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
    }

    .dropdown a:hover { color: var(--pink); background: var(--pink-soft); }

    .nav-cta {
      background: var(--pink);
      color: var(--white) !important;
      padding: 9px 22px !important;
      border-radius: 6px !important;
      margin-left: 8px;
      transition: background 0.2s ease, transform 0.15s ease !important;
    }

    .nav-cta:hover {
      background: var(--pink-hover) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 23px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.25s ease;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      background: var(--white);
      border-top: 1px solid rgba(0,0,0,0.07);
      padding: 10px 1.5rem 24px;
    }

    .mobile-nav.open { display: block; }

    .mobile-nav a {
      display: block;
      padding: 13px 0;
      font-size: 15px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: color 0.15s;
    }

    .mobile-nav a:hover { color: var(--pink); }

    /* ===================== MAIN ===================== */
    main { flex: 1; }

    /* ===================== VIDEO SECTION ===================== */
    .top-video-showcase {
      padding: 24px 24px 0;
      background: var(--white);
      position: relative;
    }
    .top-video-frame {
      position: relative;
      width: 100%;
      max-width: 1500px;
      margin: auto;
      overflow: hidden;
      border-radius: 24px;
      background: #000;
      box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
    }
    .top-video-frame video {
      width: 100%;
      height: 88vh;
      display: block;
      object-fit: cover;
      transition: opacity 0.4s ease;
    }

    /* Subtle vignette on video */
    .top-video-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.18) 100%);
      pointer-events: none;
      border-radius: 24px;
    }

    /* ===================== SOUND BUTTON — ALWAYS VISIBLE ===================== */
    .video-sound-btn {
      position: absolute;
      right: 68px;
      bottom: 48px;
      z-index: 20;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      /* Solid opaque pink — impossible to miss on ANY background */
      background: gray;
      border: 3px solid #fff;
      color: #fff;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
      /* No backdrop-filter — not needed with solid bg */
    }
    .video-sound-btn:hover {
      background: var(--pink-hover);
      transform: scale(1.12);
      box-shadow: 0 8px 32px rgba(210,34,93,0.5), 0 2px 8px rgba(0,0,0,0.2);
    }
    .video-sound-btn i {
      transition: transform 0.2s ease;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .video-sound-btn:hover i { transform: scale(1.1); }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      width: 100%;
      padding: 130px 0 150px;
      background: var(--white);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 860px;
      margin: auto;
      padding: 0 2rem;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-family: 'Open Sans', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--pink) 60%, transparent);
      opacity: 0.55;
    }
    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(3.2rem, 7.5vw, 6.4rem);
      font-weight: 400;
      line-height: 1.04;
      color: var(--dark);
      letter-spacing: -0.035em;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
    }
    .hero-headline .line { display: block; }
    .hero-headline .accent { color: var(--pink); font-weight: 600; }

    .hero-subline {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(10px, 1.2vw, 13px);
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
      margin-bottom: 56px;
      opacity: 0;
      animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s forwards;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.68s forwards;
    }
    .hero-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      padding: 15px 38px;
      background: var(--pink);
      color: #fff;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 6px 24px rgba(210,34,93,0.22);
    }
    .hero-btn-primary:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(210,34,93,0.3); }
    .hero-btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
      padding: 14px 36px;
      border: 1px solid rgba(0,0,0,0.1);
      color: var(--dark-mid);
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    .hero-btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ===================== SERVICES WRAP ===================== */
    .services-wrap { background: var(--white); }

    .svc-intro {
      background: var(--off-white);
      border-bottom: 1px solid var(--gray-mid);
      padding: 100px 2rem 96px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .svc-intro::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 60px;
      background: linear-gradient(180deg, transparent, var(--pink));
      opacity: 0.3;
    }
    .svc-intro-inner { max-width: 640px; margin: 0 auto; }
    .svc-label {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: 'Open Sans', sans-serif;
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 22px;
    }
    .svc-label::before,
    .svc-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--pink); opacity: 0.4; }
    .svc-intro-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 200;
      line-height: 1.2;
      color: var(--dark);
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .svc-intro-title strong { font-weight: 700; }
    .svc-rule { width: 36px; height: 1.5px; background: var(--pink); border: none; margin: 0 auto 22px; opacity: 0.6; }
    .svc-intro-copy { font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 300; color: var(--gray-text); line-height: 1.9; }

    /* ===================== THREE SERVICE TILES ===================== */
    .svc-tiles-wrap {
      max-width: 1300px;
      margin: 0 auto;
      padding: 120px 2rem 140px;
    }

    .svc-tiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--gray-mid);
      border: 1px solid var(--gray-mid);
      border-radius: 2px;
      overflow: hidden;
    }

    .svc-tile {
      background: var(--white);
      padding: 68px 44px 52px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      text-align: left;
      transition: background 0.4s ease;
    }
    .svc-tile::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .svc-tile:hover { background: var(--off-white); }
    .svc-tile:hover::before { transform: scaleX(1); }
    .svc-tile:hover .svc-tile-icon { transform: translateY(-4px) scale(1.06); color: var(--pink) !important; border-color: var(--pink); background: var(--pink-soft); }
    .svc-tile:hover .svc-tile-index { color: var(--pink) !important; }
    .svc-tile:hover .svc-tile-cta { gap: 16px; color: var(--pink-hover) !important; border-color: var(--pink-hover); }
    .svc-tile:hover .svc-tile-cta .arrow { transform: translateX(4px); }

    .svc-tile-icon {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 1px solid var(--gray-mid);
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 36px;
      transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
      flex-shrink: 0;
    }
    .svc-tile-icon i { font-size: 28px; color: var(--pink); }

    .svc-tile-index {
      font-family: 'Open Sans', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.25) !important;
      margin-bottom: 14px;
      transition: color 0.3s ease;
    }

    .svc-tile-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.5rem, 2vw, 1.9rem);
      font-weight: 500;
      color: var(--dark) !important;
      letter-spacing: -0.025em;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .svc-tile-title span { color: var(--pink) !important; }

    .svc-tile-divider { width: 28px; height: 1.5px; background: var(--pink); border: none; opacity: 0.5; margin-bottom: 22px; }

    .svc-tile-copy {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      font-weight: 300;
      color: var(--gray-text) !important;
      line-height: 1.9;
      margin-bottom: 40px;
      flex: 1;
    }

    .svc-tile-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      align-self: flex-start;
      font-family: 'Poppins', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--pink) !important;
      text-decoration: none;
      padding-bottom: 7px;
      border-bottom: 1.5px solid var(--pink);
      transition: gap 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease, border-color 0.3s ease;
    }
    .svc-tile-cta .arrow { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }

    /* ===================== CTA BAND ===================== */
    .svc-cta-band {
      background: var(--off-white);
      border-top: 1px solid var(--gray-mid);
      padding: 110px 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .svc-cta-band::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 60px;
      background: linear-gradient(180deg, var(--pink), transparent);
      opacity: 0.3;
    }
    .svc-cta-inner { max-width: 560px; margin: 0 auto; }
    .svc-cta-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 200;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .svc-cta-title strong { font-weight: 700; color: var(--pink); }
    .svc-cta-copy {
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: var(--gray-text);
      line-height: 1.85;
      margin-bottom: 48px;
    }
    .svc-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      background: var(--pink);
      padding: 17px 50px;
      border-radius: 4px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 8px 28px rgba(210,34,93,0.2);
    }
    .svc-cta-btn:hover { background: var(--pink-hover); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(210,34,93,0.28); }

    /* ===================== FOOTER ===================== */
    footer { background: #0d0c0c; color: var(--white); }
    .footer-top { max-width: 1280px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; }
    .footer-brand { display: block; margin-bottom: 18px; }
    .foot-logo img { height: 120px; width: 190px; object-fit: contain; }
    .footer-tagline { font-family: 'Open Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 230px; margin-bottom: 22px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
    .social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 16px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
    .social-btn:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }
    .footer-col-title { font-family: 'Poppins', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { font-family: 'Open Sans', sans-serif; font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
    .footer-links a:hover { color: var(--white); }
    .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .contact-icon-wrap { width: 40px; height: 40px; border-radius: 50%; background: rgba(210,34,93,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); font-size: 16px; }
    .contact-icon-wrap img{ width: 20px; height: 20px;}
    .contact-label { font-family: 'Open Sans', sans-serif; font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
    .contact-value { font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); }
    .contact-value a { color: var(--white); text-decoration: none; transition: color 0.15s; }
    .contact-value a:hover { color: var(--pink); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); max-width: 1280px; margin: 0 auto; }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .footer-copy { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-copy span { color: var(--pink); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-family: 'Open Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.15s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.7); }

    /* ===================== SCROLL REVEAL ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1100px) {
      .svc-tiles-grid { grid-template-columns: 1fr 1fr; }
      .svc-tile:nth-child(3) { grid-column: 1 / -1; }
    }

    @media (max-width: 900px) {
      nav.desktop-nav { display: none; }
      .hamburger { display: flex; }
      .header-inner { height: 72px; }

      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }

    @media (max-width: 640px) {
      .top-video-showcase { padding: 14px 14px 0; }
      .top-video-frame { border-radius: 16px; }
      .top-video-frame video { height: 70vh; }
      .video-sound-btn { width: 46px; height: 46px; right: 16px; bottom: 16px; font-size: 17px; }

      .hero { padding: 96px 0 108px; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-btn-primary, .hero-btn-ghost { width: 100%; justify-content: center; }

      .svc-intro { padding: 72px 1.25rem 64px; }
      .svc-tiles-wrap { padding: 72px 1.25rem 96px; }
      .svc-tiles-grid { grid-template-columns: 1fr; }
      .svc-tile:nth-child(3) { grid-column: auto; }
      .svc-tile { padding: 52px 32px 44px; }

      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
