* { font-family: 'Inter', sans-serif; }
    html { scroll-behavior: smooth; }
    body { background: #ffffff; overflow-x: hidden; }
    img { max-width: 100%; }
    :root {
      --primary: #5e17eb;
      --primary-light: #8a4cf6;
      --primary-soft: #f0eaff;
      --bg: #ffffff;
      --bg-secondary: #fafafa;
      --dark: #0f172a;
      --text: #111827;
      --muted: #6b7280;
      --border: #e5e7eb;
    }
    .glass {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.25);
      box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
    }
    .gradient-blob {
      background: radial-gradient(circle at 30% 40%, #8a4cf6, #5e17eb, transparent 70%);
      filter: blur(80px);
      opacity: 0.3;
    }
    .grid-pattern {
      background-image: linear-gradient(rgba(94,23,235,0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(94,23,235,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .floating {
      animation: floatY 6s ease-in-out infinite;
    }
    .floating-delay-1 { animation-delay: 0.5s; }
    .floating-delay-2 { animation-delay: 1.5s; }
    .floating-delay-3 { animation-delay: 2.5s; }
    @keyframes floatY {
      0% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-12px) rotate(1deg); }
      100% { transform: translateY(0px) rotate(0deg); }
    }
    .card-hover {
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    }
    .card-hover:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 30px 60px -20px rgba(94,23,235,0.25);
    }
    .ripple-btn:active {
      transform: scale(0.96);
    }
    .masonry-col {
      column-count: 3;
      column-gap: 1.5rem;
    }
    @media (max-width: 768px) { .masonry-col { column-count: 1; } }
    .masonry-item {
      break-inside: avoid;
      margin-bottom: 1.5rem;
    }
    @media (max-width: 1023px) {
      .mobile-menu-panel {
        position: fixed;
        top: 5rem;
        right: 1.5rem;
        width: 45vw;
        max-width: 280px;
        height: 50vh;
        max-height: 360px;
        background: rgba(255,255,255,0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 2rem;
        box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
        padding: 1.5rem 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        overflow-y: auto;
        z-index: 999;
        transition: all 0.2s ease;
        pointer-events: auto;
      }
      .mobile-menu-panel a {
        padding: 0.5rem 0.75rem;
        border-radius: 1rem;
        font-weight: 500;
        font-size: 0.9rem;
        color: #111827;
        transition: 0.15s;
        border-bottom: 1px solid rgba(229,231,235,0.3);
      }
      .mobile-menu-panel a:hover {
        background: rgba(94,23,235,0.08);
        color: #5e17eb;
      }
      .mobile-menu-panel .action-row {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
      }
      .mobile-menu-panel .action-row a {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0;
        border-radius: 2rem;
        border: 1px solid #e5e7eb;
        font-size: 0.8rem;
        background: white;
      }
      .mobile-menu-panel .action-row a:first-child {
        background: #5e17eb;
        color: white;
        border: none;
      }
    }
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 1.5rem;
    }
    .popup-overlay.active {
      display: flex;
    }
    .popup-card {
      background: white;
      max-width: 400px;
      width: 100%;
      border-radius: 2.5rem;
      padding: 2rem 1.8rem;
      box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
      animation: popIn 0.25s ease;
    }
    @keyframes popIn {
      0% { opacity: 0; transform: scale(0.96) translateY(20px); }
      100% { opacity: 1; transform: scale(1) translateY(0); }
    }
    .faq-answer {
      display: none;
      padding-top: 0.5rem;
      color: #4b5563;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .faq-answer.open {
      display: block;
    }
    .faq-toggle {
      cursor: pointer;
      user-select: none;
    }
    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .service-detail-item {
      background: #f8f5ff;
      padding: 0.4rem 0.6rem;
      border-radius: 2rem;
      font-size: 0.7rem;
      color: #5e17eb;
      text-align: center;
      border: 1px solid #e5e7eb;
      transition: all 0.2s;
      font-weight: 500;
    }
    .service-detail-item:hover {
      background: #5e17eb;
      color: white;
      border-color: #5e17eb;
    }
    .nav-link {
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #5e17eb;
      transition: width 0.3s;
    }
    .nav-link:hover::after {
      width: 100%;
    }
    .brand-name {
      font-size: clamp(1rem, 4.5vw, 1.5rem);
      white-space: nowrap;
    }
    @media (max-width: 380px) {
      .brand-name { font-size: 0.9rem; }
    }
    .icon-tile {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }
    @media (max-width: 640px) {
      .floating-decor { display: none; }
    }
