    /* ══════════════════════════════════════════
       BASE — LIGHT THEME (matches rest of site)
    ══════════════════════════════════════════ */
    body {
      background:
        radial-gradient(ellipse 80% 55% at 8% 50%, rgba(34,197,94,.13), transparent 58%),
        radial-gradient(ellipse 55% 70% at 98% 25%, rgba(16,185,129,.09), transparent 52%),
        linear-gradient(160deg, #f4fbf6 0%, #eaf6ed 55%, #f4fbf6 100%);
      min-height: 100vh; overflow-x: hidden;
    }

    /* Fixed animated background layers */
    .contact-bg-grid {
      position: fixed; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(34,197,94,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,197,94,.05) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
    }
    .contact-bg-radial {
      position: fixed; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 70% 55% at 50% 25%, rgba(34,197,94,.08), transparent 65%);
      pointer-events: none;
    }
    #contactBg {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
      opacity: .35;
    }
    #floatingFx {
      position: fixed; inset: 0; z-index: 0;
      pointer-events: none;
    }

    /* ── PAGE WRAPPER ── */
    .cp-page {
      position: relative; z-index: 1;
      padding-top: 72px;
    }

    /* ══════════════════════════════════════════
       SECTION 1 — TELEGRAM HERO
    ══════════════════════════════════════════ */
    .cp-tg-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: calc(100vh - 72px);
      align-items: center;
    }

    /* Left panel */
    .cp-hero-left {
      padding: 80px 56px 80px 64px;
      border-right: 1px solid rgba(34,197,94,.18);
      display: flex; flex-direction: column;
      gap: 28px;
    }

    .cp-kicker {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .75rem; font-weight: 700;
      letter-spacing: 3px; color: #16a34a;
      text-transform: uppercase;
    }
    .cp-heading {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
      font-weight: 700; line-height: 1.05;
      color: #0f1a12; letter-spacing: 2px;
      margin: 0;
    }
    .cp-heading em { color: #16a34a; font-style: normal; }

    /* Heading row — mascot (left) + heading text */
    .cp-hero-headrow {
      display: flex; align-items: center;
      gap: 28px;
    }
    .cp-hero-headtext { flex: 1; min-width: 0; }
    .cp-hero-headtext .cp-kicker { display: block; margin-bottom: 12px; }
    .cp-hero-headmascot {
      flex-shrink: 0;
      width: 370px;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .cp-hero-headmascot::before {
      content: '';
      position: absolute;
      width: 94%; aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(34,197,94,.26) 0%, rgba(34,197,94,.08) 48%, transparent 72%);
      filter: blur(6px);
      animation: mascotPulseGlow 4s ease-in-out infinite;
      pointer-events: none; z-index: 0;
    }
    .cp-hero-headmascot img {
      position: relative; z-index: 1;
      width: 100%; height: auto;
      filter: drop-shadow(0 20px 42px rgba(34,197,94,.32)) drop-shadow(0 8px 18px rgba(0,0,0,.12));
      animation: mascotFloat 5s ease-in-out infinite;
    }

    /* Stats grid */
    .cp-tg-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .cp-tgs-item {
      background: #ffffff;
      border: 1px solid rgba(34,197,94,.2);
      border-radius: 10px; padding: 14px 16px;
      box-shadow: 0 2px 12px rgba(34,197,94,.07);
      transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
    }
    .cp-tgs-item:hover {
      border-color: rgba(34,197,94,.45);
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(34,197,94,.15);
    }
    .cp-tgs-val {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.55rem; font-weight: 700;
      color: #16a34a; letter-spacing: 1px;
    }
    .cp-tgs-label {
      font-size: .68rem; color: #4a7c59;
      letter-spacing: .8px; text-transform: uppercase;
      margin-top: 2px;
    }

    /* ── BIG UNISCITI ORA BUTTON (under TG chat) ── */
    .cp-unisciti-btn {
      display: flex; align-items: center; justify-content: center;
      gap: 14px;
      padding: 20px 36px;
      background: linear-gradient(135deg, #0d6abf 0%, #2196f3 55%, #0a84e8 100%);
      color: #fff;
      border: 2px solid transparent;
      border-radius: 14px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.35rem; font-weight: 700;
      letter-spacing: 2.5px; text-decoration: none;
      text-transform: uppercase;
      box-shadow: 0 6px 28px rgba(33,150,243,.4);
      transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .3s, background .3s, color .3s, border-color .3s;
      position: relative; overflow: hidden;
    }
    /* Shine sweep */
    .cp-unisciti-btn::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.32) 50%, transparent 62%);
      transform: translateX(-110%);
      transition: transform .6s cubic-bezier(.22,1,.36,1);
      pointer-events: none;
    }
    .cp-unisciti-btn:hover::after { transform: translateX(110%); }
    /* Icon chip — inverts on hover like the social cards */
    .cp-unisciti-btn .cub-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 40px; height: 40px; border-radius: 11px;
      background: rgba(255,255,255,.2);
      border: 1px solid rgba(255,255,255,.35);
      flex-shrink: 0;
      transition: background .3s;
    }
    .cp-unisciti-btn .cub-icon svg {
      width: 24px; height: 24px;
      fill: #ffffff; transition: fill .3s;
    }
    /* HOVER — fill inverts to white, text+icon turn blue (like seguici-ovunque TG card) */
    .cp-unisciti-btn:hover {
      transform: translateY(-6px);
      background: #ffffff;
      color: #0d6abf;
      border-color: #2196f3;
      box-shadow: 0 18px 48px rgba(33,150,243,.45);
    }
    .cp-unisciti-btn:hover .cub-icon {
      background: linear-gradient(135deg, #0d6abf, #2196f3);
      border-color: transparent;
    }
    .cp-unisciti-note {
      font-size: .72rem; color: #4a7c59;
      text-align: center; letter-spacing: .5px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .cp-unisciti-note strong { color: #16a34a; }
    .cp-unisciti-note .dot { opacity: .35; }

    /* Trust items */
    .cp-trust {
      display: flex; flex-direction: column; gap: 10px;
    }
    .cp-trust-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 12px 14px;
      background: #ffffff;
      border: 1px solid rgba(34,197,94,.18);
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(34,197,94,.06);
      transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
    }
    .cp-trust-item:hover {
      border-color: rgba(34,197,94,.4);
      transform: translateX(3px);
      box-shadow: 0 4px 18px rgba(34,197,94,.13);
    }
    .cpt-icon {
      flex-shrink: 0; margin-top: 1px;
      width: 36px; height: 36px; border-radius: 10px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
      color: #16a34a;
    }
    .cpt-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: .9rem; font-weight: 700;
      color: #0f1a12; letter-spacing: .5px;
      margin-bottom: 2px;
    }
    .cpt-desc {
      font-size: .73rem; color: #4a7c59;
      line-height: 1.5;
    }

    .cp-disclaimer {
      font-size: .7rem; color: #4a7c59;
      line-height: 1.6; border-top: 1px solid rgba(34,197,94,.18);
      padding-top: 14px;
    }

    /* Right panel — TG phone mockup + CTA below */
    .cp-hero-right {
      padding: 70px 64px 70px 56px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 20px;
    }
    .cp-hero-right .tg-phone {
      width: 100%;
      max-width: 400px;
      height: 760px;
      max-height: 760px;
    }
    .cp-hero-right .cp-unisciti-btn,
    .cp-hero-right .cp-unisciti-note {
      width: 100%;
      max-width: 400px;
    }
    @keyframes mascotPulseGlow {
      0%, 100% { transform: scale(1); opacity: .7; }
      50% { transform: scale(1.08); opacity: 1; }
    }
    @keyframes mascotFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    /* ══════════════════════════════════════════
       SECTION 2 — BOT MASCOT + SPEECH BUBBLE
    ══════════════════════════════════════════ */
    .cp-chatbot-section {
      border-top: 1px solid rgba(34,197,94,.2);
      background:
        radial-gradient(ellipse 70% 60% at 22% 50%, rgba(34,197,94,.13), transparent 65%),
        radial-gradient(ellipse 60% 70% at 90% 30%, rgba(16,185,129,.08), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.55), rgba(240,253,244,.65));
      padding: 90px 40px 100px;
      position: relative;
    }
    .cp-chatbot-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(340px, 460px) 1fr;
      gap: 56px;
      align-items: start;
    }
    .cp-chatbot-mascot {
      display: flex; flex-direction: column;
      align-items: center; justify-content: flex-start;
      position: sticky; top: 100px;
      gap: 0;
    }
    /* Speech bubble ABOVE the mascot */
    .mascot-bubble {
      position: relative; z-index: 2;
      width: 100%; max-width: 400px;
      background: #ffffff;
      border: 2px solid rgba(34,197,94,.32);
      border-radius: 20px;
      padding: 22px 26px;
      box-shadow: 0 12px 36px rgba(34,197,94,.2);
      margin-bottom: 28px;
      text-align: center;
    }
    .mascot-bubble .mb-kicker {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .66rem; font-weight: 700;
      letter-spacing: 2.5px; color: #16a34a;
      text-transform: uppercase;
      display: block; margin-bottom: 6px;
    }
    .mascot-bubble .mb-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.4rem, 2.4vw, 1.85rem);
      font-weight: 700; line-height: 1.15;
      color: #0f1a12; letter-spacing: 1px;
      margin: 0;
    }
    .mascot-bubble .mb-title em { color: #16a34a; font-style: normal; }
    .mascot-bubble .mb-desc {
      font-size: .8rem; color: #4a7c59;
      line-height: 1.55; margin-top: 8px;
    }
    /* Bubble tail pointing DOWN to the mascot */
    .mascot-bubble::after {
      content: '';
      position: absolute;
      bottom: -13px; left: 50%;
      width: 22px; height: 22px;
      background: #ffffff;
      border-right: 2px solid rgba(34,197,94,.32);
      border-bottom: 2px solid rgba(34,197,94,.32);
      transform: translateX(-50%) rotate(45deg);
    }
    .cp-mascot-img-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      width: 100%;
    }
    .cp-mascot-img-wrap::before {
      content: '';
      position: absolute;
      width: 84%; aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(34,197,94,.2) 0%, rgba(34,197,94,.06) 45%, transparent 70%);
      filter: blur(6px);
      animation: mascotPulseGlow 4s ease-in-out infinite;
      pointer-events: none; z-index: 0;
    }
    .cp-chatbot-mascot img {
      position: relative; z-index: 1;
      width: 100%; max-width: 440px;
      height: auto;
      filter: drop-shadow(0 22px 46px rgba(34,197,94,.32));
      animation: mascotFloat 5.5s ease-in-out infinite;
    }
    /* Online status badge */
    .cp-chatbot-mascot .mascot-status {
      position: relative; z-index: 2;
      margin-top: 16px;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 18px;
      background: #ffffff;
      border: 1px solid rgba(34,197,94,.3);
      border-radius: 22px;
      box-shadow: 0 4px 18px rgba(34,197,94,.18);
      font-family: 'Rajdhani', sans-serif;
      font-size: .82rem; font-weight: 700;
      color: #15803d; letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .cp-chatbot-mascot .mascot-status .status-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #22c55e;
      box-shadow: 0 0 0 0 rgba(34,197,94,.5);
      animation: statusPulse 1.8s ease infinite;
    }

    .cp-chatbot-side {
      display: flex; flex-direction: column; gap: 24px;
    }

    /* ── CHAT WIDGET ── */
    .chat-widget {
      width: 100%;
      background: #ffffff;
      border: 2px solid rgba(34,197,94,.28);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 14px 50px rgba(34,197,94,.18), 0 4px 16px rgba(0,0,0,.04);
      display: flex; flex-direction: column;
      max-height: 620px;
      position: relative;
    }

    .chat-header {
      background: linear-gradient(135deg, #16a34a, #22c55e);
      border-bottom: 1px solid rgba(34,197,94,.3);
      padding: 16px 22px;
      display: flex; align-items: center; gap: 14px;
      color: #ffffff;
      position: relative; z-index: 1;
    }
    .chat-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(255,255,255,.25);
      border: 1.5px solid rgba(255,255,255,.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
    }
    .chat-name {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      color: #ffffff; letter-spacing: 1.4px;
      text-transform: uppercase;
    }
    .chat-status {
      display: flex; align-items: center; gap: 6px;
      font-size: .68rem; color: rgba(255,255,255,.85);
      letter-spacing: .5px;
    }
    .chat-status-dot { background: #ffffff !important; }
    .chat-status-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #4ade80;
      animation: statusPulse 2s ease infinite;
    }
    @keyframes statusPulse {
      0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
      50%     { opacity: .7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
    }
    .chat-members {
      margin-left: auto;
      font-size: .72rem; font-weight: 700;
      color: #ffffff; letter-spacing: .8px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.3);
      padding: 4px 10px; border-radius: 14px;
    }

    .chat-messages {
      flex: 1; overflow-y: auto; overflow-x: hidden;
      padding: 20px 20px 8px;
      display: flex; flex-direction: column; gap: 10px;
      max-height: 320px;
      scrollbar-width: thin;
      scrollbar-color: rgba(34,197,94,.3) transparent;
      background: #f8fffe;
    }
    .chat-messages::-webkit-scrollbar { width: 3px; }
    .chat-messages::-webkit-scrollbar-thumb { background: rgba(34,197,94,.3); border-radius: 2px; }

    .chat-msg {
      display: flex; gap: 8px; align-items: flex-end;
      animation: msgIn .3s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes msgIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .chat-msg.user-msg { flex-direction: row-reverse; }

    .msg-av {
      width: 28px; height: 28px; border-radius: 50%;
      background: linear-gradient(135deg, #16a34a, #4ade80);
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; flex-shrink: 0;
    }
    .msg-bubble {
      max-width: 82%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: .82rem; line-height: 1.55;
      font-family: 'Space Grotesk', sans-serif;
    }
    .chat-msg:not(.user-msg) .msg-bubble {
      background: #ffffff;
      border: 1px solid rgba(34,197,94,.22);
      color: #0f1a12;
      border-bottom-left-radius: 4px;
      box-shadow: 0 1px 4px rgba(34,197,94,.06);
    }
    .chat-msg.user-msg .msg-bubble {
      background: linear-gradient(135deg, #16a34a, #22c55e);
      border: 1px solid rgba(34,197,94,.4);
      color: #ffffff;
      border-bottom-right-radius: 4px;
      text-align: right;
    }
    .msg-bubble strong { color: #16a34a; }
    .chat-msg.user-msg .msg-bubble strong { color: #ffffff; text-decoration: underline; }
    .msg-bubble code {
      display: block;
      background: #f0fdf4;
      border: 1px solid rgba(34,197,94,.2);
      border-radius: 6px; padding: 8px 10px;
      margin-top: 6px;
      font-family: 'Space Grotesk', monospace;
      font-size: .75rem; color: #15803d;
      line-height: 1.6;
    }

    .chat-typing {
      display: flex; gap: 8px; align-items: flex-end;
      padding: 0 20px 4px;
    }
    .typing-bubble {
      display: flex; gap: 5px; align-items: center;
      padding: 8px 14px;
      background: #ffffff;
      border: 1px solid rgba(34,197,94,.22);
      border-radius: 14px; border-bottom-left-radius: 4px;
      box-shadow: 0 1px 4px rgba(34,197,94,.06);
    }
    .typing-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(34,197,94,.55);
      animation: typingDot .9s ease-in-out infinite;
    }
    .typing-dot:nth-child(2) { animation-delay: .15s; }
    .typing-dot:nth-child(3) { animation-delay: .3s; }
    @keyframes typingDot {
      0%,100% { opacity: .3; transform: translateY(0); }
      50%     { opacity: 1;  transform: translateY(-3px); }
    }

    .chat-qr {
      padding: 12px 22px 20px;
      display: flex; flex-wrap: wrap; gap: 9px;
      background: linear-gradient(180deg, rgba(240,253,244,.4), rgba(240,253,244,.85));
      border-top: 1px solid rgba(34,197,94,.12);
    }
    .qr-btn {
      background: #ffffff;
      border: 1.5px solid rgba(34,197,94,.35);
      border-radius: 22px; padding: 9px 18px;
      font-family: 'Rajdhani', sans-serif;
      font-size: .85rem; font-weight: 700;
      color: #15803d;
      cursor: pointer; letter-spacing: .8px;
      transition: all .25s cubic-bezier(.22,1,.36,1);
      animation: qrIn .3s cubic-bezier(.22,1,.36,1) both;
      box-shadow: 0 3px 12px rgba(34,197,94,.1);
      text-transform: uppercase;
    }
    @keyframes qrIn {
      from { opacity: 0; transform: scale(.85) translateY(8px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .qr-btn:hover {
      background: linear-gradient(135deg, #16a34a, #22c55e);
      border-color: #15803d;
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(34,197,94,.35);
    }

    .chat-tg-cta {
      padding: 14px 20px 20px;
      border-top: 1px solid rgba(34,197,94,.2);
      background: #f8fffe;
      display: none; flex-direction: column; gap: 10px;
    }
    .chat-tg-cta.visible { display: flex; }
    .tg-btn-main {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; padding: 14px;
      background: linear-gradient(135deg, #0d6abf, #2196f3);
      color: #fff; border-radius: 12px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      letter-spacing: 1.5px; text-decoration: none;
      text-transform: uppercase;
      box-shadow: 0 4px 22px rgba(33,150,243,.4);
      transition: all .25s;
    }
    .tg-btn-main:hover {
      box-shadow: 0 6px 32px rgba(33,150,243,.6);
      transform: translateY(-2px);
    }
    .tg-members-note {
      font-size: .7rem; color: #4a7c59;
      text-align: center; letter-spacing: .5px;
    }
    .tg-members-note strong { color: #16a34a; }

    /* ══════════════════════════════════════════
       SECTION 3 — SOCIAL LINKS (light themed)
    ══════════════════════════════════════════ */
    .cp-social-section {
      border-top: 1px solid rgba(34,197,94,.2);
      padding: 64px 40px 80px;
      text-align: center;
      position: relative;
    }
    /* Mascot social (large mascot holding social icons) */
    .cp-social-mascot {
      display: flex; justify-content: center;
      margin: 0 auto 28px;
    }
    .cp-social-mascot img {
      width: 220px; height: auto;
      filter: drop-shadow(0 14px 32px rgba(34,197,94,.28));
      animation: mascotFloat 5s ease-in-out infinite;
    }
    .cp-social-section .sec-kicker {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .72rem; font-weight: 700;
      letter-spacing: 3px; color: #16a34a;
      text-transform: uppercase; margin-bottom: 10px;
    }
    .cp-social-section h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.8rem; font-weight: 700;
      color: #0f1a12; letter-spacing: 1px;
      margin: 0 0 36px;
    }
    .cp-social-grid {
      max-width: 1000px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 18px;
    }
    /* Card base */
    .cps-card {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 14px; padding: 36px 24px;
      border-radius: 18px;
      border: 2px solid rgba(34,197,94,.2);
      background: #ffffff;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(34,197,94,.1);
      transition: transform .25s cubic-bezier(.22,1,.36,1), border-color .25s, background .3s, box-shadow .3s;
      position: relative; overflow: hidden;
    }
    .cps-card::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
      transform: translateX(-110%);
      transition: transform .55s;
      pointer-events: none;
    }
    .cps-card:hover::after { transform: translateX(110%); }
    .cps-card:hover {
      transform: translateY(-7px);
    }

    /* Telegram — big card */
    .cps-card.tg {
      border-color: rgba(33,150,243,.4);
      background: linear-gradient(135deg, #f0f9ff, #ffffff);
      flex-direction: row; justify-content: flex-start;
      padding: 32px 34px;
      gap: 22px;
    }
    .cps-card.tg:hover {
      border-color: #2196f3;
      background: linear-gradient(135deg, #0d6abf, #2196f3);
      box-shadow: 0 18px 48px rgba(33,150,243,.45);
    }
    .cps-card.tg .cps-icon {
      width: 62px; height: 62px; border-radius: 16px;
      background: linear-gradient(135deg, #0d6abf, #2196f3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 18px rgba(33,150,243,.5);
      transition: background .3s, box-shadow .3s;
    }
    .cps-card.tg:hover .cps-icon {
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }
    .cps-card.tg .cps-icon svg { width: 30px; height: 30px; fill: #fff; transition: fill .3s; }
    .cps-card.tg:hover .cps-icon svg { fill: #2196f3; }
    .cps-card.tg .cps-info { flex: 1; text-align: left; }
    .cps-card.tg .cps-name {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.25rem; font-weight: 700;
      color: #0f1a12; letter-spacing: .5px;
      transition: color .3s;
    }
    .cps-card.tg .cps-handle {
      font-size: .76rem; color: #4a7c59;
      margin-top: 3px; transition: color .3s;
    }
    .cps-card.tg .cps-count {
      font-family: 'Rajdhani', sans-serif;
      font-size: .95rem; font-weight: 700;
      color: #0d6abf; letter-spacing: .5px;
      transition: color .3s;
    }
    .cps-card.tg:hover .cps-name,
    .cps-card.tg:hover .cps-count { color: #ffffff; }
    .cps-card.tg:hover .cps-handle { color: rgba(255,255,255,.8); }
    .cps-card.tg .cps-join-chip {
      background: linear-gradient(135deg, #0d6abf, #2196f3);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: .85rem; font-weight: 700;
      letter-spacing: 1px; padding: 7px 16px;
      border-radius: 22px;
      white-space: nowrap;
      box-shadow: 0 3px 12px rgba(33,150,243,.4);
      transition: background .3s, color .3s;
    }
    .cps-card.tg:hover .cps-join-chip {
      background: #ffffff; color: #0d6abf;
    }

    /* Other social cards */
    .cps-card .cps-icon {
      width: 58px; height: 58px; border-radius: 15px;
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s;
    }
    .cps-card:hover .cps-icon { transform: scale(1.12); }
    .cps-card .cps-icon svg { width: 28px; height: 28px; }
    .cps-card .cps-name {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      color: #0f1a12; letter-spacing: .5px;
      transition: color .3s;
    }
    .cps-card .cps-handle {
      font-size: .74rem; color: #4a7c59;
      margin-top: 3px; transition: color .3s;
    }

    /* Instagram — brand color fill on hover */
    .cps-card.ig .cps-icon {
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      box-shadow: 0 3px 14px rgba(253,29,29,.35);
    }
    .cps-card.ig .cps-icon svg { fill: #fff; }
    .cps-card.ig:hover {
      border-color: #fd1d1d;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      box-shadow: 0 18px 44px rgba(253,29,29,.4);
    }
    .cps-card.ig:hover .cps-icon { background: #ffffff; }
    .cps-card.ig:hover .cps-icon svg { fill: #fd1d1d; }
    .cps-card.ig:hover .cps-name { color: #ffffff; }
    .cps-card.ig:hover .cps-handle { color: rgba(255,255,255,.85); }

    /* YouTube — brand color fill on hover */
    .cps-card.yt .cps-icon { background: #ff0000; box-shadow: 0 3px 14px rgba(255,0,0,.35); }
    .cps-card.yt .cps-icon svg { fill: #fff; }
    .cps-card.yt:hover {
      border-color: #ff0000;
      background: #ff0000;
      box-shadow: 0 18px 44px rgba(255,0,0,.4);
    }
    .cps-card.yt:hover .cps-icon { background: #ffffff; }
    .cps-card.yt:hover .cps-icon svg { fill: #ff0000; }
    .cps-card.yt:hover .cps-name { color: #ffffff; }
    .cps-card.yt:hover .cps-handle { color: rgba(255,255,255,.85); }

    /* TikTok — brand color fill on hover */
    .cps-card.tt .cps-icon { background: #000; box-shadow: 0 3px 14px rgba(0,0,0,.3); }
    .cps-card.tt .cps-icon svg { fill: #fff; }
    .cps-card.tt:hover {
      border-color: #000000;
      background: #0a0a0a;
      box-shadow: 0 18px 44px rgba(0,0,0,.35);
    }
    .cps-card.tt:hover .cps-icon { background: #ffffff; }
    .cps-card.tt:hover .cps-icon svg { fill: #000000; }
    .cps-card.tt:hover .cps-name { color: #ffffff; }
    .cps-card.tt:hover .cps-handle { color: rgba(255,255,255,.8); }

    /* Footer */
    .cp-footer {
      background: rgba(255,255,255,.55);
      border-top: 1px solid rgba(34,197,94,.18);
      padding: 28px 40px;
      text-align: center;
    }
    .cp-footer p {
      font-size: .7rem; color: #4a7c59;
      line-height: 1.6; max-width: 700px; margin: 0 auto;
    }
    .cp-footer a { color: #16a34a; text-decoration: none; }
    .cp-footer a:hover { color: #15803d; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .cp-hero-left { padding: 60px 40px; }
      .cp-hero-right { padding: 60px 40px; }
      .cp-hero-headmascot { width: 300px; }
    }
    @media (max-width: 960px) {
      .cp-tg-hero { grid-template-columns: 1fr; min-height: unset; }
      .cp-hero-left { padding: 56px 32px 44px; border-right: none; border-bottom: 1px solid rgba(34,197,94,.18); }
      .cp-hero-right { padding: 48px 32px 60px; }
      .cp-social-grid { grid-template-columns: 1fr 1fr; }
      .cps-card.tg { grid-column: span 2; }
      .cp-chatbot-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .cp-chatbot-mascot { position: relative; top: auto; }
      .cp-chatbot-mascot img { max-width: 320px; }
    }
    /* Hero heading row stacks: mascot on top, heading below */
    @media (max-width: 720px) {
      .cp-hero-headrow {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
      }
      .cp-hero-headmascot { width: 260px; }
      .cp-hero-headtext { text-align: center; }
    }
    @media (max-width: 600px) {
      .cp-hero-left { padding: 44px 18px 36px; }
      .cp-hero-right { padding: 36px 18px 52px; }
      .cp-hero-headmascot { width: 220px; }
      .cp-heading { font-size: clamp(2rem, 9vw, 2.8rem); }
      /* TG phone + CTA: full width, shorter */
      .cp-hero-right .tg-phone {
        max-width: 100%;
        height: 600px;
      }
      .cp-hero-right .cp-unisciti-btn,
      .cp-hero-right .cp-unisciti-note { max-width: 100%; }
      .cp-unisciti-btn {
        font-size: 1.1rem; padding: 16px 18px;
        letter-spacing: 1.5px; gap: 10px;
      }
      .cp-unisciti-btn .cub-icon { width: 34px; height: 34px; }
      .cp-unisciti-note { flex-wrap: wrap; }
      /* Chatbot */
      .cp-chatbot-section { padding: 52px 16px 64px; }
      .cp-chatbot-mascot img { max-width: 240px; }
      .mascot-bubble { padding: 18px 20px; }
      .chat-widget { max-height: 540px; }
      .chat-header { padding: 14px 16px; }
      /* Social */
      .cp-social-section { padding: 48px 16px 60px; }
      .cp-social-grid { grid-template-columns: 1fr; }
      .cps-card { padding: 26px 20px; }
      .cps-card.tg {
        grid-column: unset;
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
      }
      .cps-card.tg .cps-info { text-align: center; }
      /* Stats stay 2-col but tighter */
      .cp-tg-stats { gap: 8px; }
      .cp-tgs-item { padding: 12px 12px; }
      .cp-tgs-val { font-size: 1.35rem; }
    }
    @media (max-width: 380px) {
      .cp-hero-headmascot { width: 180px; }
      .cp-tg-stats { grid-template-columns: 1fr; }
    }
  
