 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy:   #0a0820;
    --navy2:  #0e0b2e;
    --green:  #a9d039;
    --gold:   #c8a96e;
    --cream:  #f4f2ef;
    --white:  #ffffff;
    --muted:  rgba(255,255,255,0.55);
    --card-w: 360px;
    --card-h: 520px;
  }

  .vida {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ══ SECTION SHELL ══ */
  .srv-section {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
  }

  /* subtle background grid */
  .srv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(169,208,57,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(169,208,57,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
  }

  /* glow blobs */
  .srv-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.18;
  }
  .srv-blob--1 { width: 500px; height: 500px; background: #a9d039; top: -100px; left: -100px; }
  .srv-blob--2 { width: 400px; height: 400px; background: #1a3a8c; bottom: 0; right: -80px; }

  /* ══ HEADER ══ */
  .srv-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
  }

  .srv-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
  }

  .srv-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(169,208,57,0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(169,208,57,0); }
  }

  .srv-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .srv-title em {
    font-style: italic;
    color: var(--green);
  }

  /* nav controls */
  .srv-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .srv-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
  }

  .srv-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--navy);
    transform: scale(1.08);
  }

  .srv-counter {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--muted);
    min-width: 60px;
    text-align: center;
  }

  .srv-counter strong { color: var(--white); font-size: 18px; }

  /* ══ TRACK ══ */
  .srv-track-outer {
    overflow: hidden;
    padding: 12px 0 32px;
    cursor: grab;
    position: relative;
    z-index: 2;
  }

  .srv-track-outer:active { cursor: grabbing; }

  .srv-track {
    display: flex;
    gap: 24px;
    padding: 0 56px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    user-select: none;
  }

  /* ══ CARD ══ */
  .srv-card {
    width: var(--card-w);
    height: var(--card-h);
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease;
  }

  .srv-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  }

  /* card image */
  .srv-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
  }

  .srv-card:hover .srv-card-img { transform: scale(1.06); }

  /* gradient overlay */
  .srv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,8,32,0.1) 0%,
      rgba(10,8,32,0.25) 40%,
      rgba(10,8,32,0.88) 75%,
      rgba(10,8,32,0.97) 100%
    );
    transition: background 0.4s ease;
  }

  .srv-card:hover .srv-card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,8,32,0.05) 0%,
      rgba(10,8,32,0.20) 35%,
      rgba(10,8,32,0.82) 70%,
      rgba(10,8,32,0.96) 100%
    );
  }

  /* number badge */
  .srv-card-num {
    position: absolute;
    top: 22px;
    left: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green);
    background: rgba(10,8,32,0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(169,208,57,0.3);
    border-radius: 20px;
    padding: 5px 12px;
  }

  /* category tag */
  .srv-card-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: rgba(10,8,32,0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* bottom content */
  .srv-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 28px 32px;
  }

  .srv-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  }

  .srv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 10px;
  }

  .srv-card-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .srv-card:hover .srv-card-text {
    max-height: 100px;
    opacity: 1;
  }

  /* green accent bar */
  .srv-card-bar {
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 10px;
    transition: width 0.4s ease;
  }

  .srv-card:hover .srv-card-bar { width: 36px; }

  /* ══ DOTS ══ */
  .srv-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
    position: relative;
    z-index: 2;
  }

  .srv-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .srv-dot.active {
    background: var(--green);
    width: 24px;
    border-radius: 3px;
  }

  /* ══ PROGRESS BAR ══ */
  .srv-progress-wrap {
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 0 56px;
    position: relative;
    z-index: 2;
  }

  .srv-progress-track {
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
  }

  .srv-progress-fill {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 768px) {
    :root { --card-w: 300px; --card-h: 460px; }
    .srv-header { padding: 0 24px 40px; flex-direction: column; align-items: flex-start; }
    .srv-track  { padding: 0 24px; }
    .srv-progress-wrap { padding: 0 24px; }
  }

  @media (max-width: 480px) {
    :root { --card-w: 270px; --card-h: 420px; }
  }