    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       LAYOUT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .page-contact .main-content > .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 14px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       ANIMATIONS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes floatNote {
      from {
        transform: translateY(108vh) rotate(0deg);
        opacity: 0;
      }

      8% {
        opacity: 0.06;
      }

      92% {
        opacity: 0.03;
      }

      to {
        transform: translateY(-8vh) rotate(400deg);
        opacity: 0;
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(232, 184, 75, 0.4);
      }

      50% {
        box-shadow: 0 0 0 8px rgba(232, 184, 75, 0);
      }
    }

    @keyframes slideDown {
      from {
        transform: translateY(-10px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       PAGE HERO
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .page-hero {
      padding: 140px 0 72px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(232, 184, 75, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 35% 35% at 80% 85%, rgba(232, 184, 75, 0.06) 0%, transparent 50%);
    }

    .page-hero-line {
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--violet-light), var(--gold), transparent);
      background-size: 200% 100%;
      animation: gradientShift 4s ease infinite;
    }

    .notes-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .note {
      position: absolute;
      opacity: 0;
      animation: floatNote linear infinite;
      color: var(--gold);
      user-select: none;
      font-size: 1.4rem;
    }

    .note--1 { left: 6%; animation-duration: 22s; animation-delay: 0s; }
    .note--2 { left: 22%; animation-duration: 27s; animation-delay: 5s; }
    .note--3 { left: 48%; animation-duration: 19s; animation-delay: 2s; }
    .note--4 { left: 70%; animation-duration: 25s; animation-delay: 7s; }
    .note--5 { left: 88%; animation-duration: 21s; animation-delay: 3s; }

    .page-hero-inner {
      position: relative;
      z-index: 2;
    }

    .page-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .page-hero-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       MAIN CONTENT
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .main-content {
      padding: 0 0 100px;
    }

    .contact-spacer { height: 64px; }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 52px;
      align-items: start;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CONTACT SIDEBAR
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Card base */
    .cinfo-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 28px;
      transition: border-color var(--t), transform var(--t), box-shadow var(--t);
      position: relative;
      overflow: hidden;
    }

    .cinfo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    }

    /* Telegram card */
    .cinfo-card.telegram {
      border-color: rgba(39, 174, 245, 0.25);
      background: linear-gradient(145deg, #0a1520, #0e1c30);
    }

    .cinfo-card.telegram:hover {
      border-color: rgba(39, 174, 245, 0.55);
    }

    .cinfo-card.telegram::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #27aef5, #2dd4f7);
    }

    /* Email card */
    .cinfo-card.email {
      border-color: rgba(232, 184, 75, 0.2);
    }

    .cinfo-card.email:hover {
      border-color: rgba(232, 184, 75, 0.5);
    }

    .cinfo-card.email::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }

    /* Location card */
    .cinfo-card.location {
      border-color: rgba(124, 58, 237, 0.2);
    }

    .cinfo-card.location:hover {
      border-color: rgba(124, 58, 237, 0.45);
    }

    .cinfo-card.location::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--violet), var(--violet-light));
    }

    .cinfo-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }

    .cinfo-card.telegram .cinfo-icon {
      background: rgba(39, 174, 245, 0.14);
    }

    .cinfo-card.email .cinfo-icon {
      background: rgba(232, 184, 75, 0.12);
    }

    .cinfo-card.location .cinfo-icon {
      background: rgba(124, 58, 237, 0.14);
    }

    .cinfo-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .cinfo-card.telegram .cinfo-label {
      color: #27aef5;
    }

    .cinfo-card.email .cinfo-label {
      color: var(--gold);
    }

    .cinfo-card.location .cinfo-label {
      color: var(--violet-light);
    }

    .cinfo-title {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 5px;
    }

    .cinfo-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .cinfo-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      transition: all var(--t);
      border: 1px solid;
    }

    .cinfo-link.tg-btn {
      background: rgba(39, 174, 245, 0.12);
      border-color: rgba(39, 174, 245, 0.4);
      color: #27aef5;
      animation: pulse 2.8s ease-in-out infinite;
    }

    .cinfo-link.tg-btn:hover {
      background: rgba(39, 174, 245, 0.22);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(39, 174, 245, 0.2);
    }

    .cinfo-link.email-btn {
      background: var(--gold-dim);
      border-color: rgba(232, 184, 75, 0.4);
      color: var(--gold);
    }

    .cinfo-link.email-btn:hover {
      background: rgba(232, 184, 75, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 184, 75, 0.18);
    }

    .cinfo-response {
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.76rem;
      color: var(--muted);
    }

    .dot-live {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--success);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }


    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       FAQ / MOTIVOS
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .faq-section {
      padding: 72px 0 0;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 36px;
    }

    .faq-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      padding: 22px;
      transition: border-color var(--t), transform var(--t);
    }

    .faq-card:hover {
      border-color: var(--border);
      transform: translateY(-3px);
    }

    .faq-icon {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      background: linear-gradient(145deg, rgba(232, 184, 75, 0.14), rgba(124, 58, 237, 0.12));
      border: 1px solid rgba(232, 184, 75, 0.16);
      border-radius: 11px;
      margin-bottom: 14px;
      transition: color var(--t), border-color var(--t), background-color var(--t), transform var(--t);
    }

    .faq-icon svg {
      width: 23px;
      height: 23px;
    }

    .faq-card:hover .faq-icon {
      color: var(--gold-light);
      border-color: rgba(232, 184, 75, 0.34);
      transform: translateY(-1px);
    }

    .faq-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 7px;
    }

    .faq-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.6;
    }


    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       RESPONSIVE
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 960px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .form-card {
        padding: 28px 22px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 130px 0 56px;
      }
    }
