/* HERO */
  .service-hero-wrap { position: relative; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }
  .hero-money {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: grayscale(1) sepia(0.3);
    animation: fadeIn 2s ease 0.3s forwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.04; }
  }

  .service-hero { padding: 160px 60px 80px; max-width: 900px; margin: 0 auto; position: relative; }
  .hero-content { position: relative; }

  /* Animation timings matching index (without quote) */
  .service-hero .section-tag {
    font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .section-tag::before, .section-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }

  .service-hero h1 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 8vw, 100px);
    line-height: 1; color: var(--white); margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  h1 em { color: var(--gold); font-style: normal; }

  .hero-logo-wrap {
    display: flex; align-items: center; gap: 40px;
  }
  .hero-logo-desktop {
    height: 240px; width: auto; mix-blend-mode: lighten; opacity: 0; flex-shrink: 0;
    animation: fadeLogoIn 1.6s ease 3.3s forwards, logoShine 3s ease 4.9s infinite;
  }
  .hero-logo-mobile {
    display: none; mix-blend-mode: lighten; opacity: 0;
  }

  .service-intro {
    font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 640px; margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }

  .service-hero .hero-actions {
    display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 2.5s forwards;
  }

  .btn-primary { display: inline-block; background: var(--gold); color: #0a0a0a; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

  /* Keyframes */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLogoIn {
    from { opacity: 0; }
    to { opacity: 0.85; }
  }
  @keyframes logoShine {
    0% { filter: brightness(1); }
    15% { filter: brightness(1.5); }
    30% { filter: brightness(1); }
    100% { filter: brightness(1); }
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .service-hero { padding: 120px 20px 60px; text-align: center; }
    .service-hero .section-tag { justify-content: center; }
    .hero-logo-wrap { flex-direction: column; align-items: center; gap: 0; }
    .hero-logo-desktop { display: none; }
    .hero-logo-mobile { display: block !important; width: 37.5vw; height: auto; margin: 4px auto 24px; opacity: 0; animation: fadeLogoIn 1.2s ease 3.8s forwards; }
    .service-hero .hero-actions { flex-direction: column; justify-content: center; }
    .service-hero .hero-actions .btn-primary { width: 100%; text-align: center; display: block; }
    .service-intro { animation-delay: 1.1s !important; }
    .service-hero .hero-actions { animation-delay: 2.5s !important; }
  }

  /* OFFERINGS */
  .offerings-section { padding: 80px 60px; background: var(--bg2); }
  .offerings-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); color: var(--white); margin-bottom: 48px; text-align: center; }
  .offerings-section h2 em { color: var(--gold); font-style: normal; }
  .offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .offering-card { background: var(--bg3); border: 1px solid var(--border); padding: 32px 28px; transition: border-color 0.2s, transform 0.2s; }
  .offering-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .offering-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
  .offering-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

  @media (max-width: 768px) {
    .offerings-section { padding: 60px 20px; }
  }

  /* CTA STRIP */
  .cta-strip { padding: 80px 60px; text-align: center; }
  .cta-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); margin-bottom: 16px; }
  .cta-strip h2 em { color: var(--gold); font-style: normal; }
  .cta-strip p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }

  @media (max-width: 768px) {
    .cta-strip { padding: 60px 20px; }
  }
