  :root {
    --bg: #000000;
    --surface: #101010;
    --surface-2: #191919;
    --surface-3: #060606;
    --text: #ffffff;
    --muted: #b2b2b2;
    --line: rgba(255,255,255,0.12);
    --accent: #d93be3;
    --accent-dark: #ad2fb5;
    --accent-darkest: #411144;
    --grad-pink: #c233a0;
    --grad-pink-mid: #e74175;
    --grad-orange: #ff7a3d;
    --brand-gradient: linear-gradient(180deg, var(--grad-pink) 0%, var(--grad-pink-mid) 50%, var(--grad-orange) 100%);
    --brand-gradient-tilt: linear-gradient(135deg, var(--grad-pink) 0%, var(--grad-pink-mid) 55%, var(--grad-orange) 100%);
  }
  html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  h1, h2, h3, h4, h5 {
    font-family: 'Sora', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  .container-x { max-width: 1280px; margin-inline: auto; padding-inline: 1.25rem; }
  @media (min-width: 768px) { .container-x { padding-inline: 2rem; } }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.4rem; border-radius: 0;
    font-weight: 600; font-size: 0.95rem;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--brand-gradient-tilt);
    color: #fff;
    box-shadow: 0 8px 24px rgba(231,65,117,0.30);
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(255,122,61,0.40); }
  .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
  .btn-dark {
    background: #fff; color: #000;
  }
  .btn-dark:hover { background: #f2f2f2; }

  .tagline {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
  }

  .hero-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 60%, #000 100%);
    z-index: 1;
  }

  /* Service card */
  .service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.75rem;
    transition: transform .25s ease, border-color .25s ease;
  }
  .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217,59,227,0.4);
  }
  .service-icon {
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(217,59,227,0.18), rgba(173,47,181,0.08));
    border: 1px solid rgba(217,59,227,0.25);
    margin-bottom: 1.1rem;
  }
  .service-icon svg { width: 26px; height: 26px; color: var(--accent); }

  /* Pricing card */
  .price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 2rem 1.6rem;
    display: flex; flex-direction: column;
    height: 100%;
    transition: transform .25s ease, border-color .25s ease;
  }
  .price-card.featured {
    background: linear-gradient(180deg, #1a081c 0%, #0a0a0a 100%);
    border-color: rgba(217,59,227,0.45);
  }
  .price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217,59,227,0.5);
  }
  .price-amount {
    font-family: 'Sora', sans-serif; font-weight: 800;
    font-size: 3rem; line-height: 1;
    background: linear-gradient(135deg, #fff, #d8d8d8);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .feature-row {
    display: flex; gap: 0.65rem; align-items: flex-start;
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.07);
    font-size: 0.92rem; color: #e6e6e6;
  }
  .feature-row:last-child { border-bottom: none; }
  .feature-tick {
    flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.18rem;
    color: var(--accent);
  }

  /* FAQ accordion */
  .faq details {
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 0;
  }
  .faq summary {
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-size: 1.05rem; font-weight: 600;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .chevron {
    width: 22px; height: 22px; color: var(--accent); transition: transform .25s ease;
  }
  .faq details[open] summary .chevron { transform: rotate(180deg); }
  .faq details p {
    margin-top: 0.85rem; color: var(--muted); line-height: 1.6;
  }

  /* Subtle divider for sections */
  .section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

  /* Nav */
  .nav-link { color: rgba(255,255,255,0.78); font-size: 0.95rem; font-weight: 500; transition: color .15s ease; white-space: nowrap; }
  .nav-link:hover, .nav-link.active { color: #fff; }

  /* Mobile nav */
  #mobileNav { transition: opacity .2s ease, transform .2s ease; }
  #mobileNav.hidden { opacity: 0; pointer-events: none; }

  /* Subscription card */
  .sub-card {
    background:
      radial-gradient(120% 130% at 0% 0%, rgba(217,59,227,0.18), transparent 60%),
      linear-gradient(180deg, #1a0d1c, #0a0a0a);
    border: 1px solid rgba(217,59,227,0.35);
    border-radius: 0;
    overflow: hidden;
  }

  /* CTA banner */
  .cta-banner {
    background: var(--brand-gradient);
    border-radius: 0;
  }

  /* Header */
  .site-header { position: relative; z-index: 40; }
  .header-top { background: #000; padding-top: 1rem; padding-bottom: 1rem; }
  @media (min-width: 768px) { .header-top { padding-top: 1.25rem; padding-bottom: 1.25rem; } }
  .header-nav {
    border-top: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.55) 55%, transparent 100%);
    position: relative;
    z-index: 2;
    isolation: isolate;
  }
  .header-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 0;
  }
  .header-nav > * { position: relative; z-index: 1; }
  .header-nav.menu-active::before { opacity: 1; }

  /* Hero overlap (md+): hero slides up under the nav so hero image bleeds through the gradient */
  .hero-overlap { margin-top: 0; }
  @media (min-width: 768px) { .hero-overlap { margin-top: -72px; } }
  .hero-pad { padding-top: 6rem; padding-bottom: 6rem; }
  @media (min-width: 768px) { .hero-pad { padding-top: 13.5rem; padding-bottom: 9rem; } }
  @media (min-width: 1024px) { .hero-pad { padding-top: 15.5rem; padding-bottom: 11rem; } }

  .wordmark { height: 36px; width: auto; }
  @media (min-width: 768px) { .wordmark { height: 48px; } }
  @media (min-width: 1024px) { .wordmark { height: 57px; } }

  .header-logo { height: 88px; width: auto; }
  @media (min-width: 1024px) { .header-logo { height: 110px; } }

  .contact-row {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: #fff; font-size: 0.92rem; line-height: 1.3;
    transition: opacity .15s ease;
  }
  .contact-row:hover { opacity: 0.75; }
  .contact-row svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.95; }

  .enquire-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.7rem 1.55rem;
    border-radius: 0;
    font-size: 0.95rem; font-weight: 500;
    transition: background .15s ease, border-color .15s ease;
  }
  .enquire-btn:hover {
    background: #1a1a1a;
    border-color: rgba(255,255,255,0.32);
  }

  /* Mega menu */
  .mega-wrap { position: static; }
  .mega-trigger {
    display: inline-flex; align-items: center; gap: 0.35rem;
    cursor: pointer; padding-block: 0.25rem;
  }
  .mega-chevron {
    width: 13px; height: 13px;
    transition: transform .2s ease;
  }
  .mega-wrap.open .mega-chevron { transform: rotate(180deg); }

  .mega-panel {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 50;
  }
  .mega-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mega-card {
    display: flex; flex-direction: column;
    padding: 1rem;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.08);
    background: #050505;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
    height: 100%;
    position: relative;
  }
  .mega-card:hover {
    border-color: rgba(231,65,117,0.45);
    background: #0c0509;
    transform: translateY(-2px);
  }
  .mega-card.featured {
    border-color: rgba(231,65,117,0.45);
    background: linear-gradient(180deg, #150810 0%, #050505 70%);
  }
  .mega-card .name {
    font-family: 'Sora', sans-serif; font-weight: 700;
    font-size: 0.95rem; line-height: 1.25;
    color: #fff; margin-bottom: 0.5rem; min-height: 2.4em;
  }
  .mega-card .price {
    font-family: 'Sora', sans-serif; font-weight: 700;
    font-size: 1.25rem;
    background: var(--brand-gradient-tilt);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    margin-bottom: 0.45rem;
  }
  .mega-card .price .from { font-size: 0.7rem; font-weight: 500; color: var(--muted); -webkit-text-fill-color: var(--muted); margin-right: 0.3rem; letter-spacing: 0.14em; text-transform: uppercase; }
  .mega-card .desc {
    font-size: 0.82rem; line-height: 1.55; color: #b2b2b2; flex: 1;
  }
  .mega-card .more {
    margin-top: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
    color: #fff; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .mega-card .more svg { width: 13px; height: 13px; transition: transform .15s ease; }
  .mega-card:hover .more svg { transform: translateX(3px); }

  .mega-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.22rem 0.6rem;
    background: var(--brand-gradient-tilt);
    color: #fff; font-size: 0.6rem;
    text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
    z-index: 1;
  }

  .mega-aside {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(231,65,117,0.12), rgba(255,122,61,0.06));
    border: 1px solid rgba(231,65,117,0.30);
    height: 100%; display: flex; flex-direction: column;
  }
  .mega-aside h4 {
    font-family: 'Sora', sans-serif; font-size: 1rem; margin-bottom: 0.4rem; color:#fff;
  }
  .mega-aside p { font-size: 0.82rem; color: #cdcdcd; line-height: 1.5; flex: 1; margin-bottom: 0.85rem; }

  .mega-foot {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.9rem 0;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-size: 0.85rem;
  }
  .mega-foot a { color: #fff; }
  .mega-foot .pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    transition: background .15s ease, border-color .15s ease;
  }
  .mega-foot .pill:hover { background: #1a1a1a; border-color: rgba(255,255,255,0.32); }

  /* Form fields */
  .form-input {
    display: block;
    width: 100%;
    padding: 0.75rem 0.95rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 0;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .form-input:focus {
    outline: none;
    border-color: var(--grad-pink-mid);
    box-shadow: 0 0 0 3px rgba(231,65,117,0.18);
  }
  .form-input::placeholder { color: #a3a3a3; }
  textarea.form-input { resize: vertical; min-height: 130px; }
  select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23525252' stroke-width='2'><polyline points='1 1.5 6 6.5 11 1.5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    padding-right: 2.5rem;
  }

  /* Brand gradient utilities */
  .brand-gradient-bg { background: var(--brand-gradient-tilt); }
  .brand-gradient-text {
    background: var(--brand-gradient-tilt);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
