.contacts-page {
    --cc-border: rgba(152, 226, 255, 0.14);
    --cc-surface: linear-gradient(180deg, rgba(10, 29, 46, 0.9), rgba(6, 18, 30, 0.96));
    --cc-surface-strong: linear-gradient(180deg, rgba(12, 35, 56, 0.96), rgba(6, 19, 31, 0.99));
    --cc-cyan: #63e4ff;
    --cc-gold: #ffd06f;
    --cc-text: #eff7ff;
    --cc-muted: rgba(227, 239, 249, 0.76);
    position: relative;
    padding: clamp(96px, 10vw, 132px) 0 84px;
    color: var(--cc-text);
  }

  .contacts-page .container {
    position: relative;
    z-index: 1;
  }

  .contacts-section + .contacts-section {
    margin-top: 30px;
  }

  .cc-shell,
  .cc-card,
  .cc-jump,
  .cc-faq__item {
    border: 1px solid var(--cc-border);
    border-radius: 30px;
    background: var(--cc-surface);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cc-stage {
    margin-bottom: 34px;
  }

  .cc-stage__panel {
    padding: clamp(24px, 4vw, 36px);
    background:
      radial-gradient(circle at 86% 14%, rgba(255, 208, 111, 0.14), transparent 24%),
      radial-gradient(circle at 12% 88%, rgba(99, 228, 255, 0.15), transparent 26%),
      linear-gradient(180deg, rgba(9, 28, 45, 0.9), rgba(5, 17, 28, 0.98));
  }

  .cc-stage__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.88fr) minmax(220px, 0.72fr);
    gap: 22px;
    align-items: start;
  }

  .cc-kicker,
  .cc-head__eyebrow,
  .cc-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(233, 244, 255, 0.66);
  }

  .cc-kicker::before,
  .cc-head__eyebrow::before,
  .cc-card__eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 228, 255, 0), rgba(99, 228, 255, 0.9));
  }

  .cc-title {
    margin: 0;
    font-size: clamp(2.85rem, 5vw, 4.6rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, #00b5c8 0%, #2cc7b8 24%, #72c86b 56%, #ffbe3c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .cc-subtitle {
    margin: 10px 0 0;
    max-width: 20ch;
    font-family: Montserrat, sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.15rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--cc-gold);
    font-weight: 800;
  }

  .cc-lead,
  .cc-card__text,
  .cc-jump p,
  .cc-faq__item p {
    color: var(--cc-muted);
    line-height: 1.66;
  }

  .cc-lead {
    max-width: 34ch;
    margin: 16px 0 0;
    font-size: 1rem;
  }

  .cc-copy__actions,
  .cc-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cc-copy__actions {
    margin-top: 18px;
  }

  .cc-contact {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid rgba(156, 219, 255, 0.12);
    background: rgba(7, 24, 39, 0.54);
  }

  .cc-contact__label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 208, 111, 0.22);
    background: rgba(255, 208, 111, 0.08);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffe3a2;
  }

  .cc-phone {
    display: inline-block;
    margin-top: 4px;
    font-size: clamp(1.55rem, 2.55vw, 2.3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #f5fbff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
  }

  .cc-contact__text {
    margin: 0;
    color: var(--cc-muted);
    line-height: 1.58;
  }

  .cc-channelList {
    display: grid;
    gap: 10px;
    margin-top: 4px;
  }

  .cc-channel {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 60px;
    padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid rgba(156, 219, 255, 0.14);
    background: rgba(10, 28, 45, 0.72);
    color: #f4fbff;
    text-decoration: none;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
  }

  .cc-channel:hover {
    transform: translateY(-2px);
    border-color: rgba(116, 223, 255, 0.28);
    background: rgba(13, 34, 53, 0.9);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  }

  .cc-channel img {
    width: 40px;
    height: 40px;
    display: block;
  }

  .cc-channel strong {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
  }

  .cc-topics {
    display: grid;
    gap: 10px;
    align-content: start;
    padding-left: 14px;
    border-left: 1px solid rgba(156, 219, 255, 0.12);
  }

  .cc-topics__label {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(233, 244, 255, 0.58);
  }

  .cc-topic {
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(156, 219, 255, 0.12);
    background: rgba(7, 24, 39, 0.42);
    color: rgba(236, 245, 252, 0.9);
    font-weight: 700;
    line-height: 1.35;
  }

  .cc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
  }

  .cc-head__title {
    margin: 0;
    font-size: clamp(1.95rem, 4vw, 2.9rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .cc-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .cc-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 14px;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
  }

  .cc-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 228, 255, 0.14), transparent 66%);
    opacity: 0.72;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
  }

  .cc-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, transparent 68%, rgba(99, 228, 255, 0.06));
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }

  .cc-card > * {
    position: relative;
    z-index: 1;
  }

  .cc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(116, 223, 255, 0.3);
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.3);
  }

  .cc-card:hover::before {
    transform: translate(-16px, -12px) scale(1.08);
    opacity: 1;
  }

  .cc-card:hover::after {
    opacity: 1;
  }

  .cc-card--route {
    background:
      radial-gradient(circle at 90% 18%, rgba(255, 208, 111, 0.12), transparent 28%),
      radial-gradient(circle at 8% 92%, rgba(99, 228, 255, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(13, 37, 60, 0.95), rgba(6, 20, 33, 0.98));
  }

  .cc-card--parcel {
    background:
      radial-gradient(circle at 88% 16%, rgba(99, 228, 255, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(10, 31, 51, 0.95), rgba(6, 18, 29, 0.98));
  }

  .cc-card--other {
    background:
      radial-gradient(circle at 82% 24%, rgba(255, 184, 120, 0.14), transparent 30%),
      linear-gradient(180deg, rgba(18, 35, 52, 0.94), rgba(9, 22, 34, 0.98));
  }

  .cc-card__title {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.14;
  }

  .cc-card__text {
    margin: 0;
    max-width: 28ch;
  }

  .cc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cc-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(156, 219, 255, 0.14);
    background: rgba(11, 32, 50, 0.62);
    font-size: 0.84rem;
    font-weight: 700;
    color: rgba(236, 245, 252, 0.88);
  }

  .cc-card__footer {
    margin-top: 4px;
  }

  .cc-card__footer a,
  .cc-jumpAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(156, 219, 255, 0.16);
    background: rgba(10, 28, 45, 0.68);
    color: #f4fbff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
  }

  .cc-card__footer a:first-child,
  .cc-jumpAction {
    border-color: transparent;
    background: linear-gradient(135deg, #1fd2e8, #16acc9);
    box-shadow: 0 16px 34px rgba(22, 172, 201, 0.24);
    color: #041620;
  }

  .cc-card__footer a:hover,
  .cc-jumpAction:hover {
    transform: translateY(-2px);
  }

  .cc-jumpGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .cc-jump {
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: grid;
    gap: 12px;
    transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
  }

  .cc-jump:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 223, 255, 0.28);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.26);
  }

  .cc-jump__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(233, 244, 255, 0.62);
  }

  .cc-jump__label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 228, 255, 0), rgba(99, 228, 255, 0.9));
  }

  .cc-jump h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.16;
  }

  .cc-jump p {
    margin: 0;
  }

  .cc-faq {
    display: grid;
    gap: 14px;
  }

  .cc-faq__item {
    padding: 24px;
  }

  .cc-faq__item h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .cc-faq__item p {
    margin: 12px 0 0;
  }

  @media (max-width: 1140px) {
    .cc-stage__grid,
    .cc-jumpGrid {
      grid-template-columns: 1fr;
    }

    .cc-topics {
      padding-left: 0;
      border-left: 0;
    }

    .cc-cases {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 980px) {
    .contacts-page {
      padding-top: 92px;
    }

    .cc-cases,
    .cc-jumpGrid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 760px) {
    .cc-stage__panel,
    .cc-contact,
    .cc-card,
    .cc-jump,
    .cc-faq__item {
      padding: 20px;
      border-radius: 26px;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .cc-title {
      font-size: clamp(2.45rem, 11vw, 3.8rem);
    }

    .cc-copy__actions,
    .cc-card__footer {
      flex-direction: column;
      align-items: stretch;
    }

    .cc-copy__actions .btn,
    .cc-card__footer a,
    .cc-jumpAction {
      width: 100%;
      justify-content: center;
    }

    .cc-channel {
      grid-template-columns: 40px 1fr;
      padding: 13px 14px;
    }
  }
