.hero {
      min-height: 100svh;
      padding-top: 68px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* Dot-grid background */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, #C7D4E8 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: 0.4;
      pointer-events: none;
    }
    /* Soft blue glow top-right */
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 65% 55% at 72% 30%, rgba(219,234,254,0.7) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(255,255,255,0) 60%, rgba(255,255,255,1) 100%);
      pointer-events: none;
    }

    /* ââ Main two-column grid ââ */
    .hero__body {
      position: relative; z-index: 1;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 400px;
      max-width: 1200px; width: 100%;
      margin: 0 auto;
      padding: 64px 48px 48px;
      gap: 64px;
      align-items: center;
    }

    /* âââ LEFT COLUMN âââ */
    .hero__left {
      display: flex; flex-direction: column;
    }

    /* Eyebrow */
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 24px;
    }
    .eyebrow__dash {
      width: 28px; height: 2px;
      background: var(--accent); border-radius: 2px;
      display: block;
    }
    .eyebrow__label {
      font-size: 12.5px; font-weight: 600;
      color: var(--accent);
      letter-spacing: 1.2px; text-transform: uppercase;
    }

    /* Title â 2 lines */
    .hero__title {
      font-size: clamp(38px, 4vw, 54px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -2px;
      color: var(--navy);
      margin-bottom: 20px;
    }
    .title-accent {
      position: relative;
      color: var(--accent);
      display: inline-block;
    }
    .title-accent::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px;
      animation: accentLine 0.7s cubic-bezier(.22,1,.36,1) 0.8s both;
    }

    /* Description */
    .hero__desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 460px;
      margin-bottom: 32px;
    }
    .hero__desc strong { color: var(--text); font-weight: 600; }

    /* Channel tags */
    .tags {
      display: flex; flex-wrap: wrap; gap: 7px;
      margin-bottom: 32px;
    }
    .tag {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--soft); border: 1px solid var(--border);
      border-radius: 7px; padding: 4px 10px;
      font-size: 12px; font-weight: 600; color: var(--muted);
      transition: all .15s;
    }
    .tag:hover { border-color: var(--accent); color: var(--accent); background: #EFF6FF; }
    .tag__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent2); }

    /* CTA row */
    .hero__actions {
      display: flex; align-items: center; gap: 12px;
      flex-wrap: wrap; margin-bottom: 40px;
    }


    /* âââ RIGHT COLUMN âââ */
    .hero__right {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
    }

    /* Photo card â clean */
    .photo-card {
      position: relative; width: 100%;
      border-radius: 24px; overflow: hidden;
      aspect-ratio: 3 / 4;
      background: linear-gradient(155deg, #EFF6FF 0%, #DBEAFE 60%, #BFDBFE 100%);
      border: 1px solid rgba(191,219,254,0.6);
      animation: slideInRight 0.75s cubic-bezier(.22,1,.36,1) 0.2s both;
    }

    /* Corner brackets */
    .photo-card::before, .photo-card::after {
      content: '';
      position: absolute;
      width: 44px; height: 44px;
      pointer-events: none;
    }
    .photo-card::before {
      top: 14px; right: 14px;
      border-top: 2.5px solid rgba(29,78,216,0.45);
      border-right: 2.5px solid rgba(29,78,216,0.45);
      border-radius: 0 10px 0 0;
    }
    .photo-card::after {
      bottom: 14px; left: 14px;
      border-bottom: 2.5px solid rgba(29,78,216,0.45);
      border-left: 2.5px solid rgba(29,78,216,0.45);
      border-radius: 0 0 0 10px;
    }

    .photo-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-end;
      overflow: hidden; position: relative;
    }
    .photo-placeholder__svg {
      width: 58%; opacity: 0.15;
    }
    .photo-placeholder__badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(29,78,216,0.18);
      border-radius: 10px;
      padding: 9px 16px;
      font-size: 13px; font-weight: 600;
      color: var(--accent); white-space: nowrap;
    }

    /* Rating pill below photo */
    .rating-pill {
      display: flex; align-items: center; gap: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 16px;
      width: 100%;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      animation: slideInRight 0.75s cubic-bezier(.22,1,.36,1) 0.45s both;
    }
    .rating-pill__stars {
      color: #F59E0B; font-size: 15px; letter-spacing: 1px;
    }
    .rating-pill__score {
      font-size: 17px; font-weight: 800;
      color: var(--navy); letter-spacing: -0.5px;
    }
    .rating-pill__sep {
      width: 1px; height: 20px;
      background: var(--border); flex-shrink: 0;
    }
    .rating-pill__cert {
      display: flex; align-items: center; gap: 6px;
      flex: 1;
    }
    .cert-green {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22C55E; flex-shrink: 0;
      animation: pulseDot 2s ease-in-out infinite;
    }
    .rating-pill__cert span {
      font-size: 12px; font-weight: 500; color: var(--muted);
      line-height: 1.3;
    }

    /* ââââââââââ STATS BAR ââââââââââ */
    .stats-bar {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      background: var(--soft);
    }
    .stats-bar__inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat {
      padding: 28px 32px;
      border-right: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 3px;
    }
    .stat:first-child { padding-left: 0; }
    .stat:last-child  { border-right: none; }
    .stat__num {
      font-size: 34px; font-weight: 900;
      color: var(--navy); letter-spacing: -2px; line-height: 1;
    }
    .stat__num sup {
      font-size: 16px; font-weight: 700;
      vertical-align: super; letter-spacing: 0;
    }
    .stat__label {
      font-size: 13.5px; color: var(--muted); font-weight: 500;
    }

    /* ââââââââââ RESPONSIVE ââââââââââ */
    @media (max-width: 1000px) {
      .hero__body { gap: 40px; }
    }
    @media (max-width: 860px) {
      .hero__body {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
        gap: 48px;
      }
      .hero__right { max-width: 380px; margin: 0 auto; width: 100%; }
      .stats-bar__inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
      }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { padding-left: 0; border-right: 1px solid var(--border); }
      .stat:nth-child(3), .stat:nth-child(4) {
        border-top: 1px solid var(--border);
      }
    }
    @media (max-width: 600px) {
      .header { padding: 0 20px; }
      .nav, .header__phone { display: none; }
      .hero__title { letter-spacing: -1px; font-size: 30px; }
      .hero__body { padding: 32px 20px 28px; }
      .hero__right { align-items: stretch; }
      .rating-pill { width: 100%; box-sizing: border-box; gap: 6px; padding: 10px 12px; }
      .stats-bar__inner { grid-template-columns: 1fr 1fr; padding: 0; }
      .stat { padding: 24px 16px; text-align: center; }
      .stat:first-child { padding-left: 16px; }
    }
  
  /* ââââââââââ SECTION COMMON ââââââââââ */
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
  }
  .section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900; letter-spacing: -1.5px;
    color: var(--navy); line-height: 1.1;
  }

  /* ââââââââââ CASES SECTION ââââââââââ */
  .cases {
    padding: 96px 0;
    background: var(--bg);
  }
  .cases__inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
  }

  /* Head */
  .cases__head {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
  }
  .cases__all-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600;
    color: var(--accent); text-decoration: none;
    transition: gap .2s;
    white-space: nowrap; flex-shrink: 0;
    align-self: flex-end;
  }
  .cases__all-link:hover { gap: 10px; }

  /* Filters */
  .cases__filters {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px; font-weight: 600;
    padding: 7px 16px; border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent; color: var(--muted);
    cursor: pointer; transition: all .18s;
  }
  .filter-btn:hover {
    border-color: #CBD5E1; color: var(--text);
    background: var(--soft);
  }
  .filter-btn.active {
    background: var(--navy); color: #fff;
    border-color: var(--navy);
  }

  /* Carousel */
  .cases__carousel-wrap {
    overflow: hidden;
  }
  .cases__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  /* Video badge: hidden unless data-video="true" on the card */
  .ccase:not([data-video="true"]) .ccase__btn--video { display: none; }

  /* Navigation */
  .cases__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
  }
  .cases__nav-btn {
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--navy);
    transition: all .18s;
    flex-shrink: 0;
  }
  .cases__nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #EFF6FF;
  }

  /* Card */
  .case-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s, transform .25s;
    display: flex; flex-direction: column;
  }
  .case-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transform: translateY(-3px);
  }

  /* Image area */
  .case-card__img {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    overflow: hidden;
  }
  .case-card__img--1 {
    background: linear-gradient(135deg, #0A1628 0%, #1e3a5f 60%, #1D4ED8 100%);
  }
  .case-card__img--2 {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  }
  .case-card__img--3 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  }

  /* Subtle grid overlay on image */
  .case-card__img::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  /* Glow blob */
  .case-card__img::after {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, transparent 70%);
    border-radius: 50%;
  }

  .case-card__tag {
    position: relative; z-index: 1;
    display: inline-flex; align-self: flex-start;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11.5px; font-weight: 600;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    letter-spacing: 0.2px;
  }
  .case-card__img-label {
    position: relative; z-index: 1;
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.2px;
  }

  /* Body */
  .case-card__body {
    padding: 20px; flex: 1;
    display: flex; flex-direction: column; gap: 16px;
  }
  .case-card__result {
    font-size: 15px; color: var(--text);
    line-height: 1.5; font-weight: 500;
    flex: 1;
  }
  .case-card__result strong {
    color: var(--navy); font-weight: 800;
  }

  /* Metrics row */
  .case-card__metrics {
    display: flex; gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .metric {
    flex: 1;
    display: flex; flex-direction: column; gap: 2px;
    padding-right: 12px; margin-right: 12px;
    border-right: 1px solid var(--border);
  }
  .metric:last-child {
    border-right: none; padding-right: 0; margin-right: 0;
  }
  .metric__val {
    font-size: 17px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.5px; line-height: 1;
  }
  .metric__label {
    font-size: 11px; color: var(--muted);
    font-weight: 500; line-height: 1.3;
  }

  /* Action buttons */
  .case-card__actions {
    display: flex; gap: 8px;
  }
  .case-btn {
    flex: 1; display: inline-flex;
    align-items: center; justify-content: center;
    gap: 6px; font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 600;
    padding: 9px 12px; border-radius: 9px;
    text-decoration: none; transition: all .18s;
    white-space: nowrap; border: none; cursor: pointer;
  }
  .case-btn--primary {
    background: var(--navy); color: #fff;
    box-shadow: 0 1px 4px rgba(10,22,40,0.15);
  }
  .case-btn--primary:hover {
    background: #152034;
    box-shadow: 0 4px 12px rgba(10,22,40,0.2);
  }
  .case-btn--ghost {
    background: var(--soft); color: var(--muted);
    border: 1.5px solid var(--border);
  }
  .case-btn--ghost:hover {
    border-color: #CBD5E1; color: var(--text);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .cases__inner { padding: 0 24px; }
  }
  @media (max-width: 600px) {
    .cases { padding: 64px 0; }
    .cases__head { flex-direction: column; align-items: flex-start; padding: 0 20px; }
    .cases__inner { padding: 0 20px; }
    .cases__filters { padding: 0; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
    .cases__filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; }
  }

  /* ââââââââââ ABOUT ââââââââââ */
  .about {
    padding: 96px 0;
    background: var(--soft);
    border-top: 1px solid var(--border);
  }
  .about__inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    display: flex; flex-direction: column; gap: 56px;
  }

  /* Top */
  .about__top { max-width: 680px; }
  .about__heading {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900; letter-spacing: -1.5px;
    color: var(--navy); line-height: 1.15;
    margin-top: 10px;
  }
  .about__heading-accent { color: var(--accent); }

  /* Main grid */
  .about__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
  }

  /* LEFT */
  .about__photo-wrap {
    position: relative;
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(155deg, #EFF6FF, #DBEAFE);
    border: 1px solid var(--border);
  }
  .about__photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .about__photo-fallback {
    width: 100%; height: 100%;
    display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: var(--muted);
    font-size: 13px; font-weight: 500;
  }
  .about__nameplate {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
    padding: 32px 18px 16px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .about__nameplate strong {
    font-size: 16px; font-weight: 700; color: #fff;
  }
  .about__nameplate span {
    font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500;
  }

  /* Socials */
  .about__socials {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-top: 12px;
  }
  .social-link {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px; border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 13px; font-weight: 600;
    color: var(--muted); text-decoration: none;
    transition: all .18s;
  }
  .social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #EFF6FF;
  }
  .social-link svg { flex-shrink: 0; }

  /* RIGHT */
  .about__right {
    display: flex; flex-direction: column; gap: 36px;
  }
  .about__bio {
    display: flex; flex-direction: column; gap: 14px;
  }
  .about__bio p {
    font-size: 16px; color: var(--muted);
    line-height: 1.75;
  }

  /* Insights */
  .about__insights {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg);
  }
  .insight {
    display: flex; gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    transition: background .18s;
  }
  .insight:last-child { border-bottom: none; }
  .insight:hover { background: #FAFBFF; }

  .insight__num {
    font-size: 12px; font-weight: 800;
    color: var(--accent); letter-spacing: 0.5px;
    flex-shrink: 0; padding-top: 2px;
    width: 24px;
  }
  .insight__content { display: flex; flex-direction: column; gap: 6px; }
  .insight__content strong {
    font-size: 15px; font-weight: 700;
    color: var(--navy); line-height: 1.3;
  }
  .insight__content p {
    font-size: 14px; color: var(--muted);
    line-height: 1.65; margin: 0;
  }

  /* Achievements grid 3Ã2 */
  .about__achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .achieve-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color .2s, box-shadow .2s;
  }
  .achieve-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 4px 20px rgba(29,78,216,0.07);
  }
  .achieve-card__icon {
    width: 40px; height: 40px;
    background: #EFF6FF; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
  }
  .achieve-card__title {
    font-size: 18px; font-weight: 800;
    color: var(--navy); line-height: 1.3;
    letter-spacing: -0.4px;
  }
  .achieve-card__accent {
    color: var(--accent);
  }
  .achieve-card > p {
    font-size: 13.5px; color: var(--muted);
    line-height: 1.65; margin: 0;
  }

  /* Certificates */
  .about__certs-wrap {
    display: flex; flex-direction: column; gap: 24px;
  }
  .about__certs-head { display: flex; flex-direction: column; gap: 4px; }
  .about__certs-title {
    font-size: 20px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.5px;
  }
  .about__certs-sub {
    font-size: 14px; color: var(--muted); font-weight: 500;
  }
  .about__certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cert-card {
    border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    background: var(--bg);
    transition: box-shadow .25s, border-color .25s, transform .25s;
    cursor: pointer;
  }
  .cert-card:hover {
    border-color: #BFDBFE;
    box-shadow: 0 8px 28px rgba(29,78,216,0.1);
    transform: translateY(-2px);
  }
  /* Image container â tall enough for both portrait & landscape */
  .cert-card__img {
    position: relative;
    height: 220px;
    background: #F1F5F9;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .cert-card__img img {
    width: 100%; height: 100%;
    /* contain so neither portrait nor landscape gets clipped */
    object-fit: contain;
    padding: 16px;
    display: block;
    transition: transform .3s ease;
  }
  .cert-card:hover .cert-card__img img {
    transform: scale(1.04);
  }
  /* Zoom overlay icon */
  .cert-card__img::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(29,78,216,0.0);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s;
  }
  .cert-card:hover .cert-card__img::after {
    background: rgba(29,78,216,0.06);
  }
  .cert-card__zoom {
    position: absolute; bottom: 10px; right: 10px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.7);
    transition: opacity .22s, transform .22s;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .cert-card:hover .cert-card__zoom {
    opacity: 1; transform: scale(1);
  }
  /* Placeholder shown when image fails / not yet loaded */
  .cert-card__placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; width: 100%; height: 100%;
  }
  .cert-card__placeholder span {
    font-size: 12px; color: #94A3B8;
    font-weight: 500; font-family: 'Inter', monospace;
  }
  .cert-card__body {
    padding: 16px 18px;
    display: flex; flex-direction: column; gap: 3px;
  }
  .cert-card__body strong {
    font-size: 14px; font-weight: 700; color: var(--navy);
  }
  .cert-card__body span {
    font-size: 12.5px; color: var(--muted);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .about__achievements { grid-template-columns: repeat(2, 1fr); }
    .about__certs-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 860px) {
    .about__grid { grid-template-columns: 1fr; }
    .about__inner { padding: 0 24px; gap: 40px; }
    .about__photo-wrap { max-width: 340px; }
    .about__certs-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .about { padding: 64px 0; }
    .about__achievements { grid-template-columns: 1fr; }
    .about__certs-wrap { margin: 0 -20px; }
    .about__certs-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 12px;
      padding: 0 20px 12px;
      scrollbar-width: none;
      grid-template-columns: unset;
    }
    .about__certs-grid::-webkit-scrollbar { display: none; }
    .cert-card { min-width: 68vw; flex-shrink: 0; scroll-snap-align: start; }
  }

  /* ââââââââââ CTA CONSULT ââââââââââ */
  .cta-consult {
    background: var(--navy);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  /* Subtle dot grid on dark bg */
  .cta-consult::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  /* Blue glow bottom-right */
  .cta-consult::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29,78,216,0.25) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-consult__inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 72px;
    align-items: center;
  }

  /* LEFT */
  .cta-consult__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
  }
  .cta-dash {
    display: block; width: 28px; height: 2px;
    background: var(--accent2); border-radius: 2px;
  }
  .cta-consult__eyebrow span:last-child {
    font-size: 12.5px; font-weight: 600;
    color: var(--accent2);
    letter-spacing: 1.2px; text-transform: uppercase;
  }

  .cta-consult__title {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900; letter-spacing: -2px;
    color: #fff; line-height: 1.1;
    margin-bottom: 18px;
  }
  .cta-consult__sub {
    font-size: 16px; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 44px;
    max-width: 400px;
  }

  /* Steps */
  .cta-steps { display: flex; flex-direction: column; gap: 0; }
  .cta-step {
    display: flex; gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cta-step:first-child { padding-top: 0; }
  .cta-step:last-child { border-bottom: none; padding-bottom: 0; }

  .cta-step__num {
    font-size: 11px; font-weight: 800;
    color: var(--accent2); letter-spacing: 0.5px;
    flex-shrink: 0; padding-top: 2px; width: 24px;
  }
  .cta-step__text { display: flex; flex-direction: column; gap: 4px; }
  .cta-step__text strong {
    font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3;
  }
  .cta-step__text span {
    font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.6;
  }

  /* RIGHT: card */
  .cta-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex; flex-direction: column; gap: 22px;
  }
  .cta-card__header { display: flex; flex-direction: column; gap: 8px; }
  .cta-card__badge {
    display: inline-flex; align-self: flex-start;
    background: #EFF6FF; color: var(--accent);
    font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 100px;
    border: 1px solid rgba(29,78,216,0.15);
  }
  .cta-card__title {
    font-size: 19px; font-weight: 800;
    color: var(--navy); letter-spacing: -0.4px; line-height: 1.3;
  }
  .cta-card__sub {
    font-size: 13.5px; color: var(--muted); line-height: 1.6;
  }
  .cta-checklist {
    list-style: none; display: flex; flex-direction: column; gap: 9px;
    padding: 18px; background: var(--soft);
    border-radius: 12px; border: 1px solid var(--border);
  }
  .cta-checklist li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--text);
  }
  .cta-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: #DBEAFE; color: var(--accent);
    font-size: 11px; font-weight: 700; flex-shrink: 0;
  }
  .cta-card__btn {
    width: 100%; display: flex;
    align-items: center; justify-content: center; gap: 8px;
    background: var(--navy); color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 700;
    padding: 15px 24px; border-radius: 12px;
    border: none; cursor: pointer;
    box-shadow: 0 4px 16px rgba(10,22,40,0.25);
    transition: all .2s;
  }
  .cta-card__btn:hover {
    background: #152034;
    box-shadow: 0 8px 24px rgba(10,22,40,0.35);
    transform: translateY(-1px);
  }
  .cta-card__note {
    font-size: 12px; color: #94A3B8;
    text-align: center; line-height: 1.5; margin-top: -4px;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .cta-consult__inner {
      grid-template-columns: 1fr;
      gap: 48px; padding: 0 24px;
    }
    .cta-consult { padding: 72px 0; }
  }
  @media (max-width: 600px) {
    .cta-consult { padding: 56px 0; }
    .cta-formats { grid-template-columns: repeat(3, 1fr); }
  }

  /* ââââââ WHY SECTION ââââââ */
  .why {
    padding: 100px 0 80px;
    background: var(--soft);
    overflow: hidden;
  }
  .why__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .why__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
  }
  .why__head-left { max-width: 600px; }
  .why__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 14px;
  }
  .why__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }
  .why__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }
  .why__title em {
    font-style: normal;
    color: #E53E3E;
  }
  .why__note {
    font-size: 15px; color: var(--muted);
    line-height: 1.65; margin-top: 10px;
    max-width: 460px;
  }
  .why__badge {
    flex-shrink: 0;
    display: flex; align-items: center; gap: 10px;
    background: #FFF5F5; border: 1.5px solid #FECACA;
    border-radius: 14px; padding: 14px 20px;
  }
  .why__badge-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: #FEE2E2; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #E53E3E;
  }
  .why__badge-text strong {
    display: block; font-size: 15px; font-weight: 800;
    color: #C53030; letter-spacing: -0.4px;
  }
  .why__badge-text span {
    font-size: 12.5px; color: #FC8181;
  }
  .why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pain-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 28px 26px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
  }
  .pain-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E53E3E, #FC8181);
    opacity: 0; transition: opacity .22s;
    border-radius: 20px 20px 0 0;
  }
  .pain-card:hover { border-color: #FECACA; box-shadow: 0 8px 32px rgba(229,62,62,0.08); transform: translateY(-3px); }
  .pain-card:hover::before { opacity: 1; }
  .pain-card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: #FEE2E2;
    display: flex; align-items: center; justify-content: center;
    color: #E53E3E; flex-shrink: 0;
    transition: background .22s, transform .22s;
  }
  .pain-card:hover .pain-card__icon { background: #FECACA; transform: scale(1.05); }
  .pain-card__body { flex: 1; }
  .pain-card__title { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.4px; margin-bottom: 6px; line-height: 1.35; }
  .pain-card__text { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
  .pain-card__tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    color: #E53E3E; background: #FFF5F5; border: 1px solid #FECACA;
    border-radius: 6px; padding: 4px 9px; width: fit-content;
  }
  @media (max-width: 1024px) {
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .why__head { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .why { padding: 64px 0; }
    .why__inner { padding: 0 20px; }
    .why__grid { grid-template-columns: 1fr; }
    .why__head { margin-bottom: 36px; }
  }

  /* ââââââ GUARANTEE SECTION ââââââ */
  .guarantee {
    padding: 100px 0;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  /* dot grid overlay */
  .guarantee::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  /* blue glow */
  .guarantee::after {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .guarantee__inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 48px;
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
  }
  /* LEFT */
  .guarantee__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent2);
    margin-bottom: 20px;
  }
  .guarantee__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent2);
  }
  .guarantee__title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 900; color: #fff;
    letter-spacing: -1.5px; line-height: 1.1;
    margin-bottom: 16px;
  }
  .guarantee__title em {
    font-style: normal;
    background: linear-gradient(135deg, #60A5FA, #93C5FD);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .guarantee__desc {
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 1.7; margin-bottom: 44px;
    max-width: 480px;
  }

  /* Guarantee items */
  .guarantee__items {
    display: flex; flex-direction: column; gap: 0;
  }
  .guarantee__item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background .2s;
  }
  .guarantee__item:first-child { padding-top: 0; }
  .guarantee__item:last-child { border-bottom: none; padding-bottom: 0; }

  .guarantee__item-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #60A5FA; flex-shrink: 0;
    transition: background .2s;
  }
  .guarantee__item:hover .guarantee__item-icon {
    background: rgba(59,130,246,0.25);
    border-color: rgba(59,130,246,0.4);
  }
  .guarantee__item-body {}
  .guarantee__item-title {
    font-size: 17px; font-weight: 800; color: #fff;
    letter-spacing: -0.4px; margin-bottom: 5px;
  }
  .guarantee__item-text {
    font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65;
  }

  /* RIGHT â photo card */
  .guarantee__photo-wrap {
    position: relative;
  }
  .guarantee__photo-card {
    border-radius: 28px; overflow: hidden;
    aspect-ratio: 3 / 4;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }
  .guarantee__photo-card img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
  }
  .guarantee__photo-placeholder {
    width: 100%; height: 100%;
    display: none;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    color: rgba(255,255,255,0.3);
  }
  /* floating badge */
  .guarantee__photo-badge {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    white-space: nowrap;
  }
  .guarantee__photo-badge-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22C55E; flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
  }
  .guarantee__photo-badge-text strong {
    display: block; font-size: 14px; font-weight: 800; color: #fff;
  }
  .guarantee__photo-badge-text span {
    font-size: 12px; color: rgba(255,255,255,0.5);
  }
  /* decoration ring */
  .guarantee__photo-wrap::before {
    content: '';
    position: absolute; inset: -16px;
    border-radius: 36px;
    border: 1.5px dashed rgba(59,130,246,0.2);
    pointer-events: none;
  }

  @media (max-width: 1024px) {
    .guarantee__inner { grid-template-columns: 1fr; gap: 56px; }
    .guarantee__photo-card { aspect-ratio: 4/3; max-width: 480px; }
  }
  @media (max-width: 600px) {
    .guarantee { padding: 72px 0; }
    .guarantee__inner { padding: 0 20px; }
    .guarantee__title { font-size: 30px; }
  }

  /* ââââââ SERVICES SECTION ââââââ */
  .services {
    padding: 100px 0 80px;
    background: var(--soft);
    overflow: hidden;
  }
  .services__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  /* Head */
  .services__head { margin-bottom: 48px; }
  .services__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }
  .services__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .services__title {
    font-size: clamp(30px, 3.5vw, 46px); font-weight: 900;
    color: var(--navy); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 10px;
  }
  .services__note-global { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 560px; }

  /* TAB NAV */
  .services__tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 6px; background: var(--bg);
    border: 1.5px solid var(--border); border-radius: 18px;
    width: fit-content;
  }
  .stab {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 13px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
    color: var(--muted); background: none; border: none; cursor: pointer;
    transition: all .22s; white-space: nowrap;
  }
  .stab svg { flex-shrink: 0; transition: color .22s; }
  .stab:hover { color: var(--navy); background: var(--soft); }
  .stab.active {
    background: var(--navy); color: #fff;
    box-shadow: 0 4px 16px rgba(10,22,40,0.2);
  }
  .stab.active svg { color: #93C5FD; }

  /* PANELS */
  .services__panel { display: none; }
  .services__panel.active { display: block; }

  /* Panel header */
  .spanel__head { margin-bottom: 32px; }
  .spanel__title { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 8px; }
  .spanel__desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 680px; margin-bottom: 0; }
  .spanel__note {
    display: inline-flex; align-items: flex-start; gap: 10px;
    background: #FFFBEB; border: 1.5px solid #FDE68A;
    border-radius: 12px; padding: 12px 16px;
    font-size: 13px; color: #92400E; line-height: 1.55; margin-top: 14px;
  }
  .spanel__note svg { flex-shrink: 0; margin-top: 1px; color: #D97706; }

  /* PRICING GRID â 3 cards */
  .spanel__cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }

  /* Tariff card */
  .tcard {
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: 22px; padding: 30px 26px 24px;
    display: flex; flex-direction: column;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    position: relative; overflow: hidden;
  }
  .tcard::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), #60A5FA);
    opacity: 0; transition: opacity .22s;
  }
  .tcard:hover { border-color: #BFDBFE; box-shadow: 0 8px 32px rgba(29,78,216,0.08); transform: translateY(-3px); }
  .tcard:hover::before { opacity: 1; }

  .tcard--featured { background: var(--navy); border-color: transparent; }
  .tcard--featured::before { opacity: 1; background: linear-gradient(90deg, #60A5FA, #93C5FD); }
  .tcard--featured:hover { border-color: rgba(255,255,255,0.15); box-shadow: 0 12px 40px rgba(10,22,40,0.3); }

  .tcard--free { background: #F0FDF4; border-color: #BBF7D0; }
  .tcard--free::before { background: linear-gradient(90deg, #22C55E, #4ADE80); }
  .tcard--free:hover { border-color: #86EFAC; box-shadow: 0 8px 32px rgba(34,197,94,0.1); }

  .tcard__badge {
    position: absolute; top: 18px; right: 18px;
    font-size: 11px; font-weight: 800; letter-spacing: 0.4px; text-transform: uppercase;
    border-radius: 8px; padding: 4px 10px;
  }
  .tcard--featured .tcard__badge { background: rgba(255,255,255,0.15); color: #93C5FD; }
  .tcard--free .tcard__badge { background: #DCFCE7; color: #15803D; }
  .tcard__title { font-size: 18px; font-weight: 900; color: var(--navy); letter-spacing: -0.4px; margin-bottom: 10px; line-height: 1.3; }
  .tcard--featured .tcard__title { color: #fff; }
  .tcard--free .tcard__title { color: #14532D; }

  .tcard__desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
  .tcard--featured .tcard__desc { color: rgba(255,255,255,0.55); }
  .tcard--free .tcard__desc { color: #166534; }

  .tcard__features {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
    flex: 1; margin-bottom: 24px;
  }
  .tcard__features li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: var(--text); font-weight: 500; line-height: 1.5;
  }
  .tcard--featured .tcard__features li { color: rgba(255,255,255,0.8); }
  .tcard--free .tcard__features li { color: #166534; }
  .tcard__features li::before {
    content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
    background: #EFF6FF url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231D4ED8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    border: 1px solid #BFDBFE;
  }
  .tcard--featured .tcard__features li::before {
    background-color: rgba(255,255,255,0.1);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2393C5FD' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    border-color: rgba(255,255,255,0.2);
  }
  .tcard--free .tcard__features li::before {
    background-color: #DCFCE7;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2316A34A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    border-color: #86EFAC;
  }

  .tcard__footer { border-top: 1px solid var(--border); padding-top: 18px; }
  .tcard--featured .tcard__footer { border-top-color: rgba(255,255,255,0.1); }
  .tcard--free .tcard__footer { border-top-color: #86EFAC; }

  .tcard__price-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); margin-bottom: 4px; }
  .tcard--featured .tcard__price-label { color: rgba(255,255,255,0.4); }
  .tcard--free .tcard__price-label { color: #15803D; }

  .tcard__price { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; }
  .tcard--featured .tcard__price { color: #fff; }
  .tcard--free .tcard__price { color: #15803D; }

  .tcard__price-sub { font-size: 12px; color: var(--muted); margin-top: 3px; margin-bottom: 16px; }
  .tcard--featured .tcard__price-sub { color: rgba(255,255,255,0.4); }
  .tcard--free .tcard__price-sub { color: #166534; }
  .tcard__discount {
    display: inline-flex; align-items: center; gap: 4px;
    background: #F0FDF4; color: #15803D;
    border: 1px solid #BBF7D0;
    border-radius: 20px; padding: 2px 10px;
    font-size: 11.5px; font-weight: 700; letter-spacing: 0.1px;
  }

  .tcard__btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
    padding: 13px 20px; border-radius: 12px; border: none; cursor: pointer;
    transition: all .18s; background: var(--navy); color: #fff;
  }
  .tcard__btn:hover { background: #152034; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,22,40,0.2); }
  .tcard--featured .tcard__btn { background: #fff; color: var(--navy); }
  .tcard--featured .tcard__btn:hover { background: #EFF6FF; }
  .tcard--free .tcard__btn { background: #22C55E; color: #fff; }
  .tcard--free .tcard__btn:hover { background: #16A34A; box-shadow: 0 6px 20px rgba(34,197,94,0.3); }

  /* Ð ÐÐÐ ÐÐÐÐ¢ÐÐ â features + cards layout */
  .spanel__split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-bottom: 36px; }
  .spanel__features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .spanel__features-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text); line-height: 1.6;
  }
  .spanel__features-list li::before {
    content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
    background: #EFF6FF url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231D4ED8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    border: 1px solid #BFDBFE;
  }
  .spanel__features-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }

  /* ÐÐÐ.Ð£Ð¡ÐÐ£ÐÐ â horizontal rows */
  .spanel__addons { display: flex; flex-direction: column; gap: 12px; }
  .addon-row {
    background: var(--bg); border: 1.5px solid var(--border); border-radius: 18px;
    padding: 22px 24px;
    display: flex; align-items: center; gap: 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
  }
  .addon-row:hover { border-color: #BFDBFE; box-shadow: 0 4px 20px rgba(29,78,216,0.07); transform: translateY(-2px); }
  .addon-row__icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: #EFF6FF; border: 1.5px solid #BFDBFE;
    display: flex; align-items: center; justify-content: center; color: var(--accent);
  }
  .addon-row__body { flex: 1; min-width: 0; }
  .addon-row__title { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 4px; }
  .addon-row__desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
  .addon-row__meta { display: flex; gap: 12px; flex-shrink: 0; align-items: center; }
  .addon-row__price { text-align: right; }
  .addon-row__price strong { display: block; font-size: 18px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
  .addon-row__price span { font-size: 12px; color: var(--muted); }
  .addon-row__btn {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
    padding: 10px 18px; border-radius: 10px; border: 1.5px solid var(--border);
    background: var(--soft); color: var(--navy); cursor: pointer; white-space: nowrap;
    transition: all .18s;
  }
  .addon-row__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* Bottom strip */
  .services__bottom {
    margin-top: 28px;
    background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
    border: 1.5px solid #BFDBFE; border-radius: 20px;
    padding: 28px 36px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .services__bottom-text strong { display: block; font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; margin-bottom: 4px; }
  .services__bottom-text span { font-size: 14px; color: var(--muted); }
  .services__bottom-btn {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
    padding: 14px 24px; border-radius: 12px; border: none;
    background: var(--navy); color: #fff; cursor: pointer;
    transition: all .18s; white-space: nowrap;
  }
  .services__bottom-btn:hover { background: #152034; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,22,40,0.2); }

  /* Responsive */
  @media (max-width: 1024px) { .spanel__cards { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 768px) {
    .spanel__cards { grid-template-columns: 1fr; }
    .spanel__split { grid-template-columns: 1fr; }
    .addon-row { flex-wrap: wrap; }
    .addon-row__meta { flex-wrap: wrap; }
    .services__bottom { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .services { padding: 64px 0; }
    .services__inner { padding: 0 20px; }
    .services__tabs {
      background: none; border: none; border-radius: 0;
      padding: 0; width: 100%;
      overflow-x: auto; flex-wrap: nowrap;
      gap: 8px; scrollbar-width: none;
    }
    .services__tabs::-webkit-scrollbar { display: none; }
    .stab {
      flex-shrink: 0;
      padding: 7px 14px; font-size: 13px; border-radius: 8px;
      border: 1.5px solid var(--border);
      background: transparent; color: var(--muted);
    }
    .stab.active {
      background: var(--navy); color: #fff; border-color: var(--navy);
      box-shadow: none;
    }
    .stab svg { display: none; }
    .services__bottom { padding: 20px; }
  }

  /* ââââââ CLIENTS CTA ââââââ */
  .clients-cta {
    padding: 0 48px 100px;
    background: var(--soft);
  }
  .clients-cta__card {
    max-width: 1200px; margin: 0 auto;
    background: var(--navy);
    border-radius: 32px;
    padding: 72px 80px;
    position: relative; overflow: hidden;
  }
  /* Dot grid */
  .clients-cta__card::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  /* Glow blobs */
  .clients-cta__glow-1 {
    position: absolute; top: -120px; left: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 65%);
    pointer-events: none;
  }
  .clients-cta__glow-2 {
    position: absolute; bottom: -100px; right: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 65%);
    pointer-events: none;
  }

  .clients-cta__inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
  }

  /* Left */
  .clients-cta__label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: #60A5FA;
    margin-bottom: 18px;
  }
  .clients-cta__label-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #60A5FA;
    animation: pulseDot 2s ease-in-out infinite;
  }

  .clients-cta__title {
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 900; color: #fff;
    letter-spacing: -2px; line-height: 1.08;
    margin-bottom: 10px;
  }
  .clients-cta__title em {
    font-style: normal;
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .clients-cta__subtitle {
    font-size: 18px; color: rgba(255,255,255,0.65);
    line-height: 1.6; margin-bottom: 36px; max-width: 540px;
    font-weight: 400;
  }

  /* Channels row */
  .clients-cta__channels {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 40px;
  }
  .clients-cta__chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; padding: 6px 14px;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
    transition: all .18s;
  }
  .clients-cta__chip:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
  }
  .clients-cta__chip-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #60A5FA; flex-shrink: 0;
  }

  /* Buttons */
  .clients-cta__btns {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .clients-cta__btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    padding: 16px 28px; border-radius: 14px; border: none;
    background: #fff; color: var(--navy); cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .clients-cta__btn-primary:hover {
    background: #EFF6FF; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  }
  .clients-cta__btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
    padding: 16px 28px; border-radius: 14px;
    background: transparent; color: #fff; cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all .2s;
  }
  .clients-cta__btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
  }

  /* Right â stat block */
  .clients-cta__stats {
    display: flex; flex-direction: column; gap: 16px;
    flex-shrink: 0; min-width: 200px;
  }
  .clients-cta__stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 22px 24px;
    text-align: center;
    transition: background .2s;
  }
  .clients-cta__stat:hover { background: rgba(255,255,255,0.1); }
  .clients-cta__stat-num {
    font-size: 36px; font-weight: 900; color: #fff;
    letter-spacing: -1.5px; line-height: 1;
    background: linear-gradient(135deg, #fff, #93C5FD);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .clients-cta__stat-label {
    font-size: 12.5px; color: rgba(255,255,255,0.5);
    margin-top: 5px; line-height: 1.4;
  }

  @media (max-width: 1024px) {
    .clients-cta__inner { grid-template-columns: 1fr; gap: 40px; }
    .clients-cta__stats { flex-direction: row; min-width: unset; }
    .clients-cta__stat { flex: 1; }
  }
  @media (max-width: 768px) {
    .clients-cta { padding: 0 20px 72px; }
    .clients-cta__card { padding: 48px 32px; border-radius: 24px; }
    .clients-cta__stats { flex-direction: column; }
    .clients-cta__title { letter-spacing: -1.2px; }
  }
  @media (max-width: 600px) {
    .clients-cta__card { padding: 36px 20px; }
    .clients-cta__chip { padding: 4px 10px; font-size: 11.5px; }
    .clients-cta__chip-dot { width: 5px; height: 5px; }
    .clients-cta__btns { flex-direction: column; }
    .clients-cta__btn-primary { padding: 14px 20px; font-size: 14px; }
    .clients-cta__btn-primary svg { display: none; }
    .clients-cta__btn-secondary { justify-content: center; }
    .clients-cta__stats { flex-direction: row; }
    .clients-cta__stat { flex: 1; }
  }

  /* ââââââ REVIEWS GALLERY ââââââ */
  .reviews { padding: 100px 0; background: var(--bg); }
  .reviews__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  /* Head */
  .reviews__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; margin-bottom: 52px;
  }
  .reviews__head-left { max-width: 560px; }
  .reviews__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }
  .reviews__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .reviews__title { font-size: clamp(26px, 2.4vw, 36px); font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1.15; }
  .reviews__note { font-size: 15px; color: var(--muted); line-height: 1.65; margin-top: 10px; }

  /* Rating pill */
  .reviews__rating-pill {
    flex-shrink: 0; display: flex; align-items: center; gap: 16px;
    background: var(--soft); border: 1.5px solid var(--border);
    border-radius: 20px; padding: 18px 24px;
  }
  .reviews__rating-big { font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: -2px; line-height: 1; }
  .reviews__rating-detail { display: flex; flex-direction: column; gap: 4px; }
  .reviews__stars { display: flex; gap: 3px; }
  .reviews__stars svg { color: #F59E0B; }
  .reviews__rating-count { font-size: 12.5px; color: var(--muted); font-weight: 500; }

  /* ââ CAROUSEL WRAPPER ââ */
  .reviews__carousel-wrap {
    position: relative;
  }

  /* Fade edges */
  .reviews__carousel-wrap::before,
  .reviews__carousel-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; z-index: 2;
    width: 60px; pointer-events: none;
  }
  .reviews__carousel-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  }
  .reviews__carousel-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  }

  /* Scrollable track */
  .reviews__track {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
  }
  .reviews__track::-webkit-scrollbar { display: none; }

  /* Nav buttons */
  .reviews__nav {
    position: absolute; top: 50%; transform: translateY(-60%);
    z-index: 3;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 16px rgba(10,22,40,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); cursor: pointer;
    transition: background .18s, box-shadow .18s, transform .18s, opacity .2s;
  }
  .reviews__nav:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(29,78,216,0.25);
    transform: translateY(-60%) scale(1.08);
  }
  .reviews__nav--prev { left: -22px; }
  .reviews__nav--next { right: -22px; }
  .reviews__nav.is-hidden { opacity: 0; pointer-events: none; }

  /* Dot indicators */
  .reviews__dots {
    display: flex; justify-content: center; align-items: center;
    gap: 7px; margin-top: 28px;
  }
  .reviews__dot {
    /* Visual size of the dot */
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--border); border: none; padding: 0; cursor: pointer;
    transition: background .2s, transform .2s, width .2s;
    /* Extend touch/click target to ≥44×44px via a transparent pseudo-element (WCAG 2.5.5) */
    position: relative;
  }
  .reviews__dot::before {
    content: ''; position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 44px; min-height: 44px;
  }
  .reviews__dot.is-active {
    background: var(--accent); width: 22px; border-radius: 4px;
  }

  /* ââ SHARED CARD BASE ââ */
  .rcard {
    border-radius: 18px; overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--soft);
    display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    cursor: pointer;
    position: relative;
    width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .rcard:hover {
    box-shadow: 0 12px 40px rgba(10,22,40,0.12);
    transform: translateY(-4px);
    border-color: #BFDBFE;
  }

  /* ââ TYPE BADGE ââ */
  .rcard__badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(10,22,40,0.68);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 7px; padding: 4px 9px;
    font-size: 10.5px; font-weight: 700; color: #fff;
    letter-spacing: 0.3px; pointer-events: none;
  }
  .rcard__badge--letter { background: rgba(30,58,138,0.78); }
  .rcard__badge--chat   { background: rgba(5,96,63,0.78); }
  .rcard__badge svg { flex-shrink: 0; }

  /* ââ ZOOM OVERLAY ââ */
  .rcard__zoom-overlay {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,22,40,0);
    transition: background .25s;
    cursor: pointer;
  }
  .rcard:hover .rcard__zoom-overlay { background: rgba(10,22,40,0.15); }
  .rcard__zoom-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    opacity: 0; transform: scale(0.7) rotate(-10deg);
    transition: opacity .25s, transform .25s;
  }
  .rcard:hover .rcard__zoom-icon { opacity: 1; transform: scale(1) rotate(0deg); }

  /* ââ IMAGE AREA (same 3:4 for both) ââ */
  .rcard__img-area {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex; align-items: flex-start; justify-content: center;
    flex-shrink: 0;
  }
  .rcard__img-area img {
    width: 100%; height: 100%;
    display: block;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
  }
  .rcard:hover .rcard__img-area img { transform: scale(1.04); }

  /* Letter specifics */
  .rcard--letter .rcard__img-area { background: #F5F6F8; padding: 10px; }
  .rcard--letter .rcard__img-area img { object-fit: contain; object-position: top center; border-radius: 3px; box-shadow: 0 2px 10px rgba(0,0,0,0.09); }

  /* Chat specifics */
  .rcard--chat .rcard__img-area { background: linear-gradient(160deg,#0F1923 0%,#1A2535 100%); }
  .rcard--chat .rcard__img-area img { object-fit: cover; object-position: top center; }

  /* Placeholders */
  .rcard__letter-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #94A3B8;
  }
  .rcard__letter-placeholder svg { opacity: 0.45; }
  .rcard__letter-placeholder p { font-size: 12px; font-weight: 500; color: #94A3B8; text-align: center; }
  .rcard__letter-placeholder span { font-size: 10.5px; color: #CBD5E1; }
  .rcard__chat-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.3); padding: 24px;
  }
  .rcard__chat-placeholder p { font-size: 12px; font-weight: 500; text-align: center; color: rgba(255,255,255,0.4); }
  .rcard__chat-placeholder span { font-size: 10.5px; color: rgba(255,255,255,0.2); }

  /* ââ CARD FOOTER ââ */
  .rcard__footer {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 14px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    flex-shrink: 0;
  }
  .rcard--chat .rcard__footer { background: #0F1923; border-top-color: rgba(255,255,255,0.08); }
  .rcard__avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11.5px; font-weight: 800;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .rcard__author-info { flex: 1; min-width: 0; }
  .rcard__author-name { font-size: 12.5px; font-weight: 800; color: var(--navy); letter-spacing: -0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rcard--chat .rcard__author-name { color: #fff; }
  .rcard__author-meta { font-size: 11px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rcard--chat .rcard__author-meta { color: rgba(255,255,255,0.45); }
  .rcard__type-tag {
    flex-shrink: 0;
    font-size: 10px; font-weight: 700; letter-spacing: 0.3px;
    border-radius: 6px; padding: 3px 8px; white-space: nowrap;
  }
  .rcard--letter .rcard__type-tag { background: #EFF6FF; color: var(--accent); border: 1px solid #BFDBFE; }
  .rcard--chat .rcard__type-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.12); }

  /* ââ LIGHTBOX ââ */
  .lightbox {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(5,10,20,0.94); backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .lightbox.is-open { opacity: 1; pointer-events: all; }
  .lightbox__inner {
    position: relative;
    max-height: 90svh; display: flex; flex-direction: column; align-items: center;
    transform: scale(0.92) translateY(12px);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
  }
  .lightbox.is-open .lightbox__inner { transform: scale(1) translateY(0); }
  .lightbox__img {
    max-width: min(90vw, 860px); max-height: 82svh;
    width: auto; height: auto; object-fit: contain;
    border-radius: 14px; box-shadow: 0 32px 100px rgba(0,0,0,0.6); display: block;
  }
  .lightbox__img--chat { max-width: min(55vw, 400px); }
  .lightbox__caption { margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }
  .lightbox__close {
    position: absolute; top: 20px; right: 20px;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; transition: background .18s, transform .22s;
    flex-shrink: 0; z-index: 1;
  }
  .lightbox__close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg) scale(1.1); }
  .lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; transition: background .18s; flex-shrink: 0;
  }
  .lightbox__nav:hover { background: rgba(255,255,255,0.2); }
  .lightbox__nav--prev { left: -60px; }
  .lightbox__nav--next { right: -60px; }
  .lightbox__counter {
    position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
    font-size: 13px; color: rgba(255,255,255,0.4); white-space: nowrap;
  }

  /* ââ RESPONSIVE ââ */
  @media (max-width: 1024px) {
    .reviews__head { flex-direction: column; align-items: flex-start; }
    .reviews__nav--prev { left: -16px; }
    .reviews__nav--next { right: -16px; }
    .lightbox__nav--prev { left: -48px; }
    .lightbox__nav--next { right: -48px; }
  }
  @media (max-width: 768px) {
    .reviews { padding: 64px 0; }
    .reviews__inner { padding: 0 20px; }
    .reviews__nav { display: none; }
    .rcard { width: 68vw; max-width: 240px; }
    .lightbox__nav { display: none; }
    .lightbox__img--chat { max-width: 85vw; }
  }
  @media (max-width: 480px) {
    .rcard { width: 76vw; }
  }

  .clients-logos { padding: 80px 0; background: var(--soft); overflow: hidden; }
  .clients-logos__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  .clients-logos__head {
    text-align: center; margin-bottom: 52px;
  }
  .clients-logos__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }
  .clients-logos__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .clients-logos__title {
    font-size: clamp(26px, 2.8vw, 38px); font-weight: 900;
    color: var(--navy); letter-spacing: -1px; line-height: 1.15;
  }
  .clients-logos__note {
    font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.65;
  }

  /* Grid */
  .clients-logos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #dde3ed;
    border: 1px solid #dde3ed;
  }

  /* Logo cell */
  .logo-cell {
    background: var(--soft);
    display: flex; align-items: center; justify-content: center;
    padding: 44px 36px;
    min-height: 160px;
    transition: background .2s;
    cursor: default;
  }
  .logo-cell:hover { background: #fff; }
  .logo-cell--empty { pointer-events: none; }

  /* Logo image — full colour */
  .logo-cell img {
    max-width: 100%; max-height: 100px;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.85;
    transition: opacity .2s;
  }
  .logo-cell:hover img { opacity: 1; }
  .logo-cell--lg img { max-height: 130px; }

  /* Placeholder (shown when image not yet uploaded) */
  .logo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
  }
  .logo-placeholder__icon {
    width: 44px; height: 28px; border-radius: 6px;
    border: 1.5px dashed #CBD5E1;
    display: flex; align-items: center; justify-content: center;
    color: #CBD5E1;
  }
  .logo-placeholder__name {
    font-size: 11px; font-weight: 600; color: #CBD5E1;
    letter-spacing: 0.2px; white-space: nowrap;
  }

  @media (max-width: 768px) {
    .clients-logos { padding: 64px 0; }
    .clients-logos__inner { padding: 0 20px; }
    .clients-logos__grid { grid-template-columns: repeat(4, 1fr); }
    .logo-cell { padding: 28px 20px; min-height: 120px; }
    .logo-cell img { max-height: 70px; }
  }
  @media (max-width: 480px) {
    .clients-logos__grid { grid-template-columns: repeat(2, 1fr); }
  }

  .subscribe { padding: 100px 0; background: var(--navy); overflow: hidden; position: relative; }
  .subscribe::before {
    content: ''; position: absolute; top: -100px; right: -60px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
    pointer-events: none;
  }

  .subscribe__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    position: relative; z-index: 1;
  }

  /* ââ LEFT ââ */
  .subscribe__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent2); margin-bottom: 14px;
  }
  .subscribe__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }
  .subscribe__title {
    font-size: clamp(28px, 3vw, 44px); font-weight: 900;
    color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px;
    white-space: nowrap;
  }

  /* Content pillars */
  .subscribe__pillars {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 36px;
  }
  .subscribe__pillar {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5;
  }
  .subscribe__pillar::before {
    content: ''; flex-shrink: 0;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent2); margin-top: 7px;
  }

  /* Channel grid: 2 columns */
  .subscribe__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .sub-card {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px; padding: 14px 16px;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
    cursor: pointer;
  }
  .sub-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
  }
  .sub-card__icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .sub-card__icon--tg     { background: linear-gradient(135deg,#229ED9,#1a87bd); }
  .sub-card__icon--vk     { background: linear-gradient(135deg,#2787F5,#0d6edc); }
  .sub-card__icon--yt     { background: linear-gradient(135deg,#FF0000,#cc0000); }
  .sub-card__icon--rutube { background: #141414; }
  .sub-card__icon--vc     { background: #fff; }
  .sub-card__icon--zen    { background: #fff; }

  .sub-card__text { flex: 1; min-width: 0; }
  .sub-card__name {
    font-size: 13px; font-weight: 800; color: #fff;
    letter-spacing: -0.2px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
  }
  .sub-card__desc {
    font-size: 11.5px; color: rgba(255,255,255,0.38);
    margin-top: 2px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
  }

  .sub-card__btn {
    flex-shrink: 0;
    font-size: 10.5px; font-weight: 700;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    border-radius: 8px; padding: 5px 10px;
    white-space: nowrap;
    transition: background .18s, color .18s, border-color .18s;
  }
  .sub-card:hover .sub-card__btn {
    background: var(--accent); border-color: var(--accent); color: #fff;
  }

  /* ââ RIGHT: photo ââ */
  .subscribe__photo-wrap { position: relative; }
  .subscribe__photo-frame {
    border-radius: 24px; overflow: hidden;
    aspect-ratio: 640 / 857;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .subscribe__photo-frame img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center; display: block;
  }
  .subscribe__photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    color: rgba(255,255,255,0.2);
  }
  .subscribe__photo-placeholder p { font-size: 13px; color: rgba(255,255,255,0.25); }

  /* floating badge */
  .subscribe__badge {
    position: absolute; bottom: -18px; left: -18px;
    background: var(--accent); color: #fff;
    border-radius: 16px; padding: 14px 20px;
    display: flex; flex-direction: column;
    box-shadow: 0 12px 32px rgba(29,78,216,0.35);
    border: 3px solid var(--navy);
  }
  .subscribe__badge-num  { font-size: 26px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
  .subscribe__badge-label { font-size: 11px; font-weight: 600; opacity: 0.8; margin-top: 3px; }

  /* Responsive */
  @media (max-width: 1024px) {
    .subscribe__inner { grid-template-columns: 1fr 300px; gap: 48px; }
  }
  @media (max-width: 768px) {
    .subscribe { padding: 72px 0; }
    .subscribe__inner { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
    .subscribe__right { order: -1; max-width: 280px; margin: 0 auto; }
    .subscribe__grid { grid-template-columns: 1fr; }
  }

  .articles { padding: 100px 0; background: var(--bg); }
  .articles__inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

  /* Head */
  .articles__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; margin-bottom: 52px;
  }
  .articles__head-left { max-width: 560px; }
  .articles__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }
  .articles__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .articles__title {
    font-size: clamp(26px, 2.8vw, 38px); font-weight: 900;
    color: var(--navy); letter-spacing: -1px; line-height: 1.15;
  }
  .articles__note { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.65; }
  .articles__all-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 700; color: var(--accent);
    text-decoration: none; flex-shrink: 0;
    transition: gap .2s;
  }
  .articles__all-link:hover { gap: 12px; }
  .articles__all-link svg { transition: transform .2s; }
  .articles__all-link:hover svg { transform: translateX(3px); }

  /* Grid */
  .articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Article card */
  .acard {
    border-radius: 20px; overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--bg);
    display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    text-decoration: none;
  }
  .acard:hover {
    box-shadow: 0 16px 48px rgba(10,22,40,0.12);
    transform: translateY(-5px);
    border-color: #BFDBFE;
  }

  /* Thumbnail */
  .acard__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
  }
  .acard__thumb img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform .5s cubic-bezier(.22,1,.36,1);
    filter: brightness(0.85);
  }
  .acard:hover .acard__thumb img { transform: scale(1.06); filter: brightness(1); }

  /* Gradient overlay on thumb */
  .acard__thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.1) 60%, transparent 100%);
    pointer-events: none;
  }

  /* Tag badge on thumb */

  /* Placeholder thumb */
  .acard__thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    color: rgba(255,255,255,0.2);
    position: absolute; inset: 0;
  }
  .acard__thumb-placeholder p { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }

  /* Body */
  .acard__body {
    padding: 22px 22px 20px;
    display: flex; flex-direction: column; flex: 1;
  }
  .acard__meta {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--muted); margin-bottom: 10px;
  }
  .acard__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
  .acard__title {
    font-size: 15.5px; font-weight: 800; color: var(--navy);
    letter-spacing: -0.3px; line-height: 1.45;
    flex: 1; margin-bottom: 18px;
  }
  .acard__read {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--accent);
    transition: gap .2s;
  }
  .acard:hover .acard__read { gap: 10px; }
  .acard__read svg { transition: transform .2s; }
  .acard:hover .acard__read svg { transform: translateX(2px); }

  /* Responsive */
  @media (max-width: 960px) {
    .articles__grid { grid-template-columns: repeat(2, 1fr); }
    .articles__head { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 600px) {
    .articles { padding: 64px 0; }
    .articles__inner { padding: 0; }
    .articles__head { padding: 0 20px; }
    .articles__grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 20px;
      -webkit-overflow-scrolling: touch;
      gap: 14px;
      padding: 0 0 16px;
      scrollbar-width: none;
      grid-template-columns: unset;
    }
    .articles__grid::-webkit-scrollbar { display: none; }
    .acard { flex: 0 0 80vw; width: 80vw; max-width: 80vw; scroll-snap-align: start; overflow: hidden; }
    .acard:first-child { margin-left: 20px; }
    .acard:last-child { margin-right: 20px; }
  }

  .final-cta {
    padding: 80px 0;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  /* Dot-grid texture */
  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  /* Glow blobs */
  .final-cta__blob {
    position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
  }
  .final-cta__blob--1 { width: 480px; height: 480px; top: -140px; right: -80px; background: rgba(59,130,246,0.13); }
  .final-cta__blob--2 { width: 360px; height: 360px; bottom: -100px; left: 5%; background: rgba(29,78,216,0.10); }

  .final-cta__inner {
    max-width: 860px; margin: 0 auto; padding: 0 48px;
    text-align: center; position: relative; z-index: 1;
  }

  .final-cta__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent2); margin-bottom: 20px;
  }
  .final-cta__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }

  .final-cta__title {
    font-size: clamp(30px, 4vw, 52px); font-weight: 900;
    color: #fff; letter-spacing: -1.5px; line-height: 1.1;
    margin-bottom: 20px;
  }
  .final-cta__title em { font-style: normal; color: var(--accent2); }

  .final-cta__sub {
    font-size: 17px; color: rgba(255,255,255,0.55);
    line-height: 1.7; max-width: 560px; margin: 0 auto 40px;
  }

  .final-cta__actions {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
  }
  .final-cta__btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #fff;
    font-size: 15px; font-weight: 800; letter-spacing: -0.2px;
    padding: 16px 32px; border-radius: 14px;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 8px 28px rgba(29,78,216,0.4);
    transition: background .2s, transform .2s, box-shadow .2s;
  }
  .final-cta__btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(29,78,216,0.5);
  }
  .final-cta__btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.65);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    padding: 15px 28px; border-radius: 14px;
    transition: border-color .2s, color .2s, background .2s;
  }
  .final-cta__btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff; background: rgba(255,255,255,0.06);
  }

  /* Trust row */
  .final-cta__trust {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; margin-top: 40px; flex-wrap: wrap;
  }
  .final-cta__trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
  }
  .final-cta__trust-item svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }

  @media (max-width: 600px) {
    .final-cta { padding: 60px 0; min-height: unset; }
    .final-cta__inner { padding: 0 20px; }
    .final-cta__actions { flex-direction: column; align-items: stretch; }
    .final-cta__btn-primary, .final-cta__btn-secondary { justify-content: center; }
    .final-cta__trust { gap: 16px; }
  }

  .faq { padding: 100px 0; background: var(--soft); }
  .faq__inner { max-width: 860px; margin: 0 auto; padding: 0 48px; }

  .faq__head { text-align: center; margin-bottom: 56px; }
  .faq__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
  }
  .faq__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .faq__title {
    font-size: clamp(26px, 2.8vw, 38px); font-weight: 900;
    color: var(--navy); letter-spacing: -1px; line-height: 1.15;
  }

  /* Accordion list */
  .faq__list { display: flex; flex-direction: column; gap: 0; }

  .faq__item {
    border-bottom: 1.5px solid var(--border);
  }
  .faq__item:first-child { border-top: 1.5px solid var(--border); }

  .faq__question {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 22px 0;
    background: none; border: none; cursor: pointer;
    text-align: left;
  }
  .faq__question-text {
    font-size: 16px; font-weight: 700; color: var(--navy);
    line-height: 1.4; letter-spacing: -0.2px;
    transition: color .2s;
  }
  .faq__item.is-open .faq__question-text { color: var(--accent); }

  .faq__icon {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: background .2s, border-color .2s, color .2s, transform .3s;
  }
  .faq__item.is-open .faq__icon {
    background: var(--accent); border-color: var(--accent);
    color: #fff; transform: rotate(45deg);
  }

  .faq__answer-wrap {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.22,1,.36,1);
  }
  .faq__item.is-open .faq__answer-wrap {
    grid-template-rows: 1fr;
  }
  .faq__answer-inner { overflow: hidden; }
  .faq__answer {
    padding-bottom: 22px;
    font-size: 15px; color: var(--muted); line-height: 1.75;
  }

  @media (max-width: 600px) {
    .faq { padding: 64px 0; }
    .faq__inner { padding: 0 20px; }
    .faq__question-text { font-size: 15px; }
  }

  /* ââââââ MODAL ââââââ */
  

/* ══════════ CASE CARDS (shared with cases.html) ══════════ */
    .ccase {
      border-radius: 20px; overflow: hidden;
      border: 1.5px solid var(--border); background: var(--bg);
      display: flex; flex-direction: column;
      transition: box-shadow .25s, transform .25s, border-color .25s;
    }
    .ccase:hover {
      box-shadow: 0 16px 48px rgba(10,22,40,0.11);
      transform: translateY(-4px); border-color: #BFDBFE;
    }
    .ccase[data-hidden="true"] { display: none; }

    /* Thumb */
    .ccase__thumb {
      position: relative; aspect-ratio: 16/9; overflow: hidden;
      background: linear-gradient(135deg, #0F1E3A 0%, #1A3260 100%);
    }
    .ccase__thumb--grad1 { background: linear-gradient(135deg, #0F1E3A 0%, #1A3260 50%, #1E40AF 100%); }
    .ccase__thumb--grad2 { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%); }
    .ccase__thumb--grad3 { background: linear-gradient(135deg, #0D2137 0%, #0A3D62 50%, #1A6B94 100%); }
    .ccase__thumb img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s cubic-bezier(.22,1,.36,1); filter: brightness(.88);
    }
    .ccase:hover .ccase__thumb img { transform: scale(1.05); filter: brightness(1); }
    .ccase__thumb::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.1) 55%, transparent 100%);
      pointer-events: none;
    }
    /* Placeholder thumb */
    .ccase__thumb-ph {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 10px;
      color: rgba(255,255,255,0.18);
    }
    .ccase__thumb-ph p { display: none; }

    /* Category badge */
    .ccase__cat {
      position: absolute; top: 12px; left: 12px; z-index: 2;
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px;
      text-transform: uppercase; color: #fff; border-radius: 7px; padding: 4px 10px;
      backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.15);
    }
    .ccase__cat--direct { background: rgba(29,78,216,0.8); }
    .ccase__cat--web    { background: rgba(5,96,63,0.8); }
    .ccase__cat--seo    { background: rgba(124,58,237,0.8); }

    /* Result chip on thumb */
    .ccase__result-chip {
      position: absolute; bottom: 12px; left: 12px; z-index: 2;
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 8px; padding: 5px 11px;
      font-size: 12px; font-weight: 700; color: #fff;
    }
    .ccase__result-chip svg { flex-shrink: 0; }

    /* Body */
    .ccase__body { padding: 20px 20px 18px; flex: 1; display: flex; flex-direction: column; }
    .ccase__niche {
      font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
      text-transform: uppercase; color: var(--muted); margin-bottom: 7px;
    }
    .ccase__title {
      font-size: 15px; font-weight: 800; color: var(--navy);
      letter-spacing: -0.3px; line-height: 1.45; margin-bottom: 10px; flex: 1;
    }
    .ccase__desc {
      font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px;
    }
    .ccase__metrics {
      display: flex; gap: 0; margin-bottom: 16px;
      border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden;
    }
    .ccase__metric {
      flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 10px 8px; text-align: center;
      border-right: 1.5px solid var(--border);
    }
    .ccase__metric:last-child { border-right: none; }
    .ccase__metric-val {
      font-size: 16px; font-weight: 900; color: var(--navy);
      letter-spacing: -0.5px; line-height: 1.1; display: block;
    }
    .ccase__metric-label {
      font-size: 10.5px; font-weight: 500; color: var(--muted);
      line-height: 1.3; margin-top: 3px; display: block;
    }
    .ccase__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 4px; }
    .ccase__btn {
      font-size: 12.5px; font-weight: 700; border-radius: 9px;
      padding: 8px 15px; cursor: pointer; text-decoration: none;
      transition: background .18s, color .18s, border-color .18s;
      display: inline-flex; align-items: center; gap: 6px; border: none;
    }
    .ccase__btn--primary {
      background: var(--accent); color: #fff;
    }
    .ccase__btn--primary:hover { background: #1e40af; }
    .ccase__btn--ghost {
      background: var(--soft); color: var(--navy);
      border: 1.5px solid var(--border);
    }
    .ccase__btn--ghost:hover { border-color: #BFDBFE; background: #EFF6FF; }