    :root {
      --red: #dc2626;
      --red2: #b91c1c;
      --bg: #fff7f7;
      --card: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --muted2: #64748b;
      --line: rgba(2, 6, 23, .10);
      --shadow: 0 20px 50px rgba(2, 6, 23, .08);
      --radius: 18px;
      --radius2: 26px;
      --container: 92%;
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
      font-size: clamp(16px, 1.1vw, 20px);
      /* FIXED BACKGROUND */
      background:
        radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
        var(--bg);
      line-height: 1.55;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    a {
      color: inherit
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .skip-link:focus {
      left: 20px;
      top: 14px;
      width: auto;
      height: auto;
      padding: 10px 14px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 12px;
      z-index: 9999;
    }

    /* Header / nav - Updated for Smart Hide */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 247, 247, .78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(2, 6, 23, .08);
      transition: transform 0.3s ease;
      /* Smooth transition */
    }

    .header-hidden {
      transform: translateY(-100%);
      /* Hide header */
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 16px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      gap: 12px;
      align-items: center;
      text-decoration: none
    }

    .logo {
      width: 85px;
      height: 85px;
      border-radius: 18px;
      background: linear-gradient(180deg, var(--red), var(--red2));
      display: grid;
      place-items: center;
      box-shadow: 0 10px 20px rgba(220, 38, 38, .18);
      flex: 0 0 auto;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .logo img {
      border-radius: inherit !important;
    }

    .logo:hover {
      transform: rotate(-5deg) scale(1.05);
    }

    /* ... inside existing styles ... */

    .list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      transition: transform 0.2s ease;
    }

    .list li:hover {
      transform: translateX(6px);
    }

    /* ... inside existing styles ... */

    .step {
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius2);
      padding: 18px;
      box-shadow: 0 18px 38px rgba(2, 6, 23, .05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 45px rgba(2, 6, 23, .09);
    }

    .logo svg {
      width: 22px;
      height: 22px
    }

    .brand-text {
      font-weight: 800;
      letter-spacing: -.02em
    }

    .brand-subtext {
      font-size: 12.5px;
      color: var(--muted2)
    }

    nav ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 18px;
      align-items: center
    }

    nav a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 10px;
      border-radius: 12px;
    }

    nav a:hover {
      background: rgba(220, 38, 38, .08);
      color: var(--text)
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(2, 6, 23, .10);
      background: rgba(255, 255, 255, .72);
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
      background: #fff
    }

    .btn.primary {
      background: linear-gradient(180deg, var(--red), var(--red2));
      border-color: rgba(220, 38, 38, .35);
      color: #fff;
    }

    .btn.primary:hover {
      background: linear-gradient(180deg, #ef4444, var(--red2))
    }

    .btn.small {
      padding: 10px 12px;
      font-size: 13px
    }

    .menu-btn {
      display: none
    }

    .mobile-panel {
      display: none;
      padding: 8px 0 14px;
      border-top: 1px solid rgba(2, 6, 23, .08);
    }

    .mobile-panel a {
      display: block;
      text-decoration: none;
      padding: 12px 10px;
      border-radius: 12px;
      color: var(--muted);
      font-weight: 700;
    }

    .mobile-panel a:hover {
      background: rgba(220, 38, 38, .08);
      color: var(--text)
    }

    .mobile-panel.open {
      display: block
    }

    /* Sections */
    main {
      padding-bottom: 40px;
      flex: 1;
    }

    section {
      scroll-margin-top: 88px
    }

    .hero {
      padding: 34px 0 10px
    }

    .hero-card {
      background: rgba(255, 255, 255, .68);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
      gap: 26px;
      padding: 28px;
    }

    .kicker {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(220, 38, 38, .18);
      background: rgba(220, 38, 38, .06);
      font-weight: 800;
      font-size: 13px;
      color: rgba(15, 23, 42, .75);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--red)
    }

    h1 {
      margin: 14px 0 10px;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.04;
      letter-spacing: -.03em;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      font-size: 16.5px;
      max-width: 58ch;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      margin-top: 18px;
      flex-wrap: wrap
    }

    .fine {
      margin: 16px 0 0;
      font-size: 15px;
      color: var(--muted2)
    }

    .fine strong {
      color: rgba(15, 23, 42, .85)
    }

    .hero-side {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    /* Card Animations */
    .stat {
      background: rgba(255, 255, 255, .7);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius);
      padding: 16px 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    }

    .hero-side .stat:nth-child(1) {
      animation-delay: 0.1s;
    }

    .hero-side .stat:nth-child(2) {
      animation-delay: 0.2s;
    }

    .hero-side .stat:nth-child(3) {
      animation-delay: 0.3s;
    }

    .stat:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(220, 38, 38, 0.08);
      /* slight red glow on hover */
      border-color: rgba(220, 38, 38, 0.2);
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(20px);
      }

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

    .stat .label {
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(15, 23, 42, .55);
      font-weight: 900;
    }

    .stat .value {
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.02em;
      margin-top: 6px;
    }

    .stat .hint {
      margin-top: 6px;
      color: var(--muted2);
      font-size: 14px
    }

    .section-title {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 0 12px;
    }

    .section-title h2 {
      margin: 0;
      font-size: 26px;
      letter-spacing: -.02em;
    }

    .sub {
      margin: 6px 0 0;
      color: var(--muted);
      max-width: 70ch
    }

    .card {
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius2);
      box-shadow: 0 18px 40px rgba(2, 6, 23, .06);
    }

    .card-inner {
      padding: 22px
    }

    .grid {
      display: grid;
      gap: 16px
    }

    .two-col {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .mt-sm {
      margin-top: 14px
    }

    /* Lists */
    .list {
      list-style: none;
      padding: 0;
      margin: 14px 0 0;
      display: grid;
      gap: 12px
    }

    .check {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(220, 38, 38, .08);
      border: 1px solid rgba(220, 38, 38, .18);
      flex: 0 0 auto;
    }

    .list li {
      display: flex;
      gap: 10px;
      align-items: flex-start
    }

    .list strong {
      color: rgba(15, 23, 42, .88)
    }

    /* Steps */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .step {
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius2);
      padding: 18px;
      box-shadow: 0 18px 38px rgba(2, 6, 23, .05);
    }

    .badge {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(220, 38, 38, .08);
      border: 1px solid rgba(220, 38, 38, .18);
      display: grid;
      place-items: center;
    }

    .badge svg {
      width: 22px;
      height: 22px
    }

    .step h3 {
      margin: 14px 0 6px;
      font-size: 16px
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14.5px
    }

    .mini {
      margin: 10px 0 0;
      padding-left: 18px;
      color: var(--muted2);
      font-size: 13.5px;
    }

    .mini li {
      margin: 6px 0
    }

    /* Details & Dropdown Animation */
    details.details {
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(2, 6, 23, .08);
      border-radius: var(--radius2);
      box-shadow: 0 18px 40px rgba(2, 6, 23, .06);
      overflow: hidden;
    }

    details.details summary {
      cursor: pointer;
      list-style: none;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-weight: 900;
      color: var(--text);
    }

    details.details summary::-webkit-details-marker {
      display: none
    }

    details.details summary .summary-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    details.details summary .hint {
      font-weight: 700;
      color: var(--muted2);
      font-size: 13px
    }

    .arrow-icon {
      width: 20px;
      height: 20px;
      color: var(--muted2);
      transition: transform 0.3s ease;
    }

    details[open] .arrow-icon {
      transform: rotate(180deg);
      color: var(--red);
    }

    .details-body {
      padding: 0 18px 18px;
      /* Animation */
      animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

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

    .details-body h4 {
      margin: 12px 0 10px;
      font-size: 14px
    }

    .bullets {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      font-size: 16px
    }

    .bullets li {
      margin: 6px 0
    }

    /* Footer */
    footer {
      border-top: 1px solid rgba(2, 6, 23, .08);
      margin-top: 30px
    }

    .foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      color: var(--muted2);
      font-size: 14px
    }

    .back-to-top {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(2, 6, 23, .10);
      background: rgba(255, 255, 255, .72);
      text-decoration: none;
    }

    .back-to-top:hover {
      background: #fff
    }

    .back-to-top svg {
      width: 18px;
      height: 18px
    }

    /* Responsive */
    @media (max-width: 920px) {
      nav {
        display: none
      }

      .menu-btn {
        display: inline-flex
      }

      .hero-inner {
        padding: 22px
      }
    }

    /* Typing Effect */
    .typing-cursor::after {
      content: '|';
      display: inline-block;
      margin-left: 2px;
      animation: blink 1s step-end infinite;
      color: var(--red);
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    /* ----- Tablet / small laptop ----- */
    @media (max-width: 768px) {
      /* Use full screen width — drop the 92% side gutters */
      .container {
        max-width: 100%;
        width: 100%;
        padding: 0 18px;
      }

      /* Declutter header: the Menu panel already holds these links */
      .nav-actions .btn:not(.menu-btn) {
        display: none;
      }

      .logo {
        width: 56px;
        height: 56px;
        border-radius: 14px;
      }

      .hero {
        padding: 24px 0 6px;
      }

      .hero-inner {
        padding: 20px;
        gap: 20px;
      }

      .cta-band {
        padding: 30px 22px;
      }

      .map-container {
        height: 340px;
      }
    }

    /* ----- Phones ----- */
    @media (max-width: 480px) {
      html, body {
        overflow-x: hidden;
      }

      .container {
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
      }

      .logo {
        width: 46px;
        height: 46px;
        border-radius: 12px;
      }

      .nav {
        padding: 10px 0;
        gap: 10px;
      }

      .hero-inner {
        padding: 16px;
      }

      .hero-actions .btn,
      .cta-band .btn {
        flex: 1 1 100%;
      }

      .cta-band {
        padding: 26px 18px;
      }

      .feature,
      .tcard,
      .step,
      .card-inner {
        padding: 18px;
      }

      .gallery img,
      .gallery figure.logo-tile img {
        height: 180px;
      }

      .section-title {
        flex-direction: column;
        align-items: flex-start;
      }

      .map-container {
        height: 280px;
      }

      /* Comfortable tap targets */
      .mobile-panel a {
        padding: 14px 12px;
      }
    }

    /* Map */
    .map-container {
      width: 100%;
      height: 450px;
      border-radius: var(--radius);
      border: 1px solid rgba(2, 6, 23, .08);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
/* ============================================================
   GLOBAL ENHANCEMENTS (added in redesign — keeps red theme)
   ============================================================ */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: .08s }
.reveal.d2 { transition-delay: .16s }
.reveal.d3 { transition-delay: .24s }
.reveal.d4 { transition-delay: .32s }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Gradient brand text */
.grad {
  background: linear-gradient(135deg, var(--red), #ef4444 55%, var(--red2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Animated background blobs for hero cards */
.hero-card { position: relative; }
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}
.hero-card::before {
  width: 320px; height: 320px;
  background: rgba(220,38,38,.16);
  top: -120px; right: -80px;
  animation: float1 9s ease-in-out infinite;
}
.hero-card::after {
  width: 260px; height: 260px;
  background: rgba(239,68,68,.12);
  bottom: -120px; left: -60px;
  animation: float2 11s ease-in-out infinite;
}
.hero-inner { position: relative; z-index: 1; }
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-24px,20px) scale(1.08); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-18px) scale(1.06); }
}

/* Button shine */
.btn.primary { position: relative; overflow: hidden; }
.btn.primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn.primary:hover::after { left: 140%; }

/* Card lift (apply to .card) */
.card {
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.card.lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(220,38,38,.12);
  border-color: rgba(220,38,38,.22);
}

/* Section heading accent bar */
.section-title h1,
.section-title h2 { position: relative; }
.title-accent::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ef4444);
}

/* Image styling */
.img-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: var(--shadow);
  position: relative;
}
.photo-frame img { transition: transform .6s cubic-bezier(.16,1,.3,1); }
.photo-frame:hover img { transform: scale(1.05); }

/* Stat / counter card */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: var(--radius2);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(2,6,23,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(220,38,38,.10); }
.stat-card .num {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--red2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-card .cap {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* Feature card */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.feature {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: var(--radius2);
  padding: 24px;
  box-shadow: 0 18px 38px rgba(2,6,23,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(220,38,38,.12); border-color: rgba(220,38,38,.2); }
.feature .badge { margin-bottom: 14px; }
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

/* Testimonial card */
.tcard {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: var(--radius2);
  padding: 26px;
  box-shadow: 0 18px 38px rgba(2,6,23,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tcard:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(220,38,38,.10); }
.tcard .quote { font-size: 40px; line-height: 1; color: rgba(220,38,38,.3); font-weight: 900; }
.tcard p { margin: 6px 0 16px; color: var(--text); font-size: 15.5px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff; display: grid; place-items: center; font-weight: 800; flex: 0 0 auto;
}
.tcard .who .name { font-weight: 800; font-size: 14px; }
.tcard .who .role { font-size: 13px; color: var(--muted2); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-radius: var(--radius2);
  padding: 40px;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 60px rgba(220,38,38,.28);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { margin: 0 0 10px; color: #fff; font-size: clamp(24px,3vw,34px); }
.cta-band p { margin: 0 auto 20px; color: rgba(255,255,255,.9); max-width: 54ch; }
.cta-band .btn { background: #fff; color: var(--red2); border-color: transparent; }
.cta-band .btn:hover { background: #fff7f7; }

/* Team avatar */
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 26px;
  box-shadow: 0 10px 22px rgba(220,38,38,.22);
}

/* Partner logo tiles */
.partner-logo {
  width: 64px; height: 64px; flex: 0 0 auto;
  border-radius: 14px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(2,6,23,.06);
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

/* Events image gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 30px rgba(2,6,23,.07);
  background: #fff;
}
.gallery img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure.logo-tile img { object-fit: contain; padding: 22px; height: 220px; background: #fff; }
.gallery figcaption {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid rgba(2,6,23,.06);
}

/* Social icon buttons */
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(220,38,38,.06);
  border: 1px solid rgba(220,38,38,.16);
  color: var(--red2); font-weight: 800;
  transition: transform .2s ease, background .2s ease;
  text-decoration: none;
}
.social-btn:hover { transform: translateY(-3px); background: rgba(220,38,38,.12); }
