/* =========================================================
   IGOR MOLINA · CYCLING COACH
   Design system
   ========================================================= */

:root{
  --bg:            #0a0a16;
  --bg-soft:       #0e0e1f;
  --surface:       #14142a;
  --surface-2:     #191933;
  --border:        rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);

  --text:          #f5f5f8;
  --text-dim:      #a6a6ba;
  --text-faint:    #6f6f85;

  --neon:          #e2ff00;
  --neon-soft:     rgba(226,255,0,.14);
  --red:           #e10036;
  --red-soft:      rgba(225,0,54,.14);
  --blue:          #2447ff;

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;

  --container: 1180px;

  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,.6);
  --shadow-md: 0 16px 32px -12px rgba(0,0,0,.5);

  --ff-head: 'Poppins', 'Arial Black', sans-serif;
  --ff-body: 'Inter', -apple-system, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
button{ font-family: inherit; cursor:pointer; }

/* background noise / grid texture */
body::before{
  content:"";
  position: fixed; inset:0;
  background-image:
    radial-gradient(circle at 15% 8%, rgba(226,255,0,.05), transparent 40%),
    radial-gradient(circle at 85% 92%, rgba(225,0,54,.06), transparent 45%);
  pointer-events:none;
  z-index:0;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section{ padding: 96px 0; position:relative; z-index:1; }
.section-tight{ padding: 64px 0; }
@media (max-width: 720px){
  .section{ padding: 64px 0; }
  .section-tight{ padding: 44px 0; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-family: var(--ff-head);
  font-size: 12.5px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 18px;
}
.eyebrow::after{
  content:"";
  height:1px;
  flex:1;
  max-width:120px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.eyebrow.center{ justify-content:center; }
.eyebrow.center::after{ display:none; }
.eyebrow.on-dark{ color: var(--neon); }

.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.section-head .lede{ color: var(--text-dim); font-size: 17px; max-width: 60ch; }
.section-head.center .lede{ margin-left:auto; margin-right:auto; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight:600;
  font-size: 14.5px;
  letter-spacing:.02em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background: var(--neon);
  color: #0a0a16;
  box-shadow: 0 0 0 0 rgba(226,255,0,.5);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(226,255,0,.45); }
.btn-outline{
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover{ border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover{ background: rgba(255,255,255,.1); }
.btn-block{ width:100%; }
.btn-lg{ padding: 18px 34px; font-size: 15.5px; }

/* ---------- header / nav ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(10,10,22,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-color: var(--border);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 34px; width:auto; }
.brand-word{ display:flex; flex-direction:column; line-height:1; }
.brand-word b{ font-family: var(--ff-head); font-weight:700; font-size:16px; letter-spacing:.01em; }
.brand-word span{ font-size:9px; letter-spacing:.22em; color: var(--text-dim); margin-top:3px; }

.nav-links{ display:flex; align-items:center; gap:8px; }
.nav-links a{
  padding: 10px 16px;
  font-size: 14px;
  font-weight:500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color .2s ease, background-color .2s ease;
}
.nav-links a:hover{ color: var(--text); background: rgba(255,255,255,.06); }
.nav-links a.active{ color: var(--bg); background: var(--neon); font-weight:600; }

.header-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid var(--border-strong);
  background: rgba(255,255,255,.05);
  align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content:"";
  display:block;
  width:18px; height:2px;
  background: var(--text);
  position:relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle::before{ position:absolute; transform: translateY(-6px); }
.nav-toggle::after{ position:absolute; transform: translateY(6px); }
.nav-toggle.is-open span{ opacity:0; }
.nav-toggle.is-open::before{ transform: rotate(45deg); }
.nav-toggle.is-open::after{ transform: rotate(-45deg); }

@media (max-width: 420px){
  .brand-word{ display:none; }
}

@media (max-width: 900px){
  .nav-links{
    position: fixed; top: 68px; left:16px; right:16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap:2px;
    transform: translateY(-14px);
    opacity:0;
    pointer-events:none;
    transition: transform .25s ease, opacity .25s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ padding:13px 16px; text-align:center; }
  .header-cta .btn-outline{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:flex-end;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position: center 30%;
  z-index:0;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(8,8,16,.55) 0%, rgba(8,8,16,.35) 30%, rgba(8,8,16,.92) 92%),
    linear-gradient(90deg, rgba(8,8,16,.85) 0%, rgba(8,8,16,.15) 55%);
}
.hero-content{ position:relative; z-index:1; max-width: 780px; }
.hero-tag{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(226,255,0,.1);
  border:1px solid rgba(226,255,0,.35);
  color: var(--neon);
  font-family: var(--ff-head);
  font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  padding: 8px 16px; border-radius:999px; margin-bottom:26px;
}
.hero h1{
  font-size: clamp(40px, 6.6vw, 78px);
  text-transform: uppercase;
  margin-bottom:.18em;
}
.hero h1 em{ color: var(--neon); font-style:normal; }
.hero .lede{ font-size: 18px; color: var(--text-dim); max-width:56ch; margin-bottom:36px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }

.hero.hero-sm{ min-height: 62vh; align-items:center; padding-top:150px; padding-bottom:70px; }
.hero.hero-sm h1{ font-size: clamp(34px, 5.4vw, 58px); }

/* ---------- stat strip ---------- */
.stat-strip{
  position:relative; z-index:2;
  margin-top: -64px;
}
.stat-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display:grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-card > div{
  padding: 30px 26px;
  border-right:1px solid var(--border);
  text-align:center;
}
.stat-card > div:last-child{ border-right:none; }
.stat-num{
  font-family: var(--ff-head); font-weight:800;
  font-size: clamp(26px,3vw,36px);
  color: var(--neon);
  line-height:1;
  margin-bottom:8px;
}
.stat-label{ font-size:12.5px; color:var(--text-dim); letter-spacing:.03em; }

@media (max-width: 760px){
  .stat-card{ grid-template-columns: repeat(2,1fr); }
  .stat-card > div{ border-bottom:1px solid var(--border); }
  .stat-card > div:nth-child(2){ border-right:none; }
  .stat-card > div:nth-child(4){ border-right:none; }
}

/* ---------- cards / grids ---------- */
.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 940px){
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}

.card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.card:hover{ transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.card .icn{
  width:46px; height:46px;
  border-radius: 12px;
  background: var(--neon-soft);
  color: var(--neon);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.card .icn svg{ width:22px; height:22px; }
.card h3{ font-size:18px; margin-bottom:10px; }
.card p{ color: var(--text-dim); font-size:14.5px; }

/* ---------- about / split sections ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
@media (max-width: 860px){
  .split{ grid-template-columns:1fr; gap:36px; }
  .split.reverse .split-media{ order:-1; }
}
.split-media{ position:relative; }
.split-media img{
  border-radius: var(--radius-lg);
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
  box-shadow: var(--shadow-lg);
}
.split-media .badge-float{
  position:absolute;
  bottom:-22px; left:-22px;
  background: var(--neon);
  color:#0a0a16;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--ff-head);
}
.split-media .badge-float b{ display:block; font-size:26px; font-weight:800; line-height:1; }
.split-media .badge-float span{ font-size:11px; letter-spacing:.05em; text-transform:uppercase; opacity:.75; }

.check-list{ display:flex; flex-direction:column; gap:14px; margin-top:22px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--text-dim); }
.check-list li svg{ flex-shrink:0; width:20px; height:20px; color:var(--neon); margin-top:2px; }
.check-list li b{ color:var(--text); font-weight:600; }

/* ---------- timeline ---------- */
.timeline{ position:relative; padding-left: 34px; }
.timeline::before{
  content:""; position:absolute; left:6px; top:6px; bottom:6px; width:1px;
  background: linear-gradient(var(--neon), var(--border) 12%, var(--border) 88%, transparent);
}
.timeline-item{ position:relative; padding-bottom:38px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-34px; top:4px;
  width:13px; height:13px; border-radius:50%;
  background: var(--bg); border:2px solid var(--neon);
}
.timeline-item .yr{
  font-family: var(--ff-head); color:var(--neon); font-weight:700;
  font-size:14px; letter-spacing:.05em; margin-bottom:6px; display:block;
}
.timeline-item p{ color: var(--text-dim); font-size:15px; max-width:56ch; }

/* ---------- results year cards ---------- */
.year-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position:relative;
  overflow:hidden;
}
.year-card::before{
  content: attr(data-year);
  position:absolute; right:-6px; top:-24px;
  font-family: var(--ff-head); font-weight:800;
  font-size:96px; color: rgba(255,255,255,.04);
  line-height:1;
}
.year-card .yr-badge{
  display:inline-block; font-family:var(--ff-head); font-weight:700;
  color:#0a0a16; background:var(--neon); padding:5px 13px; border-radius:999px;
  font-size:13px; margin-bottom:16px;
}
.year-card h3{ font-size:17px; margin-bottom:8px; }
.year-card p{ color:var(--text-dim); font-size:14.5px; margin-bottom:0; }

/* ---------- band / cta ---------- */
.band{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  background: var(--surface);
  border:1px solid var(--border);
}
.band-media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.band-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(8,8,16,.94) 20%, rgba(8,8,16,.55) 100%);
}
.band-inner{ position:relative; z-index:1; padding: 64px; }
.band h2{ font-size: clamp(26px,3.4vw,38px); max-width:18ch; }
.band p{ color:var(--text-dim); max-width:52ch; font-size:16px; }
@media (max-width: 720px){ .band-inner{ padding: 40px 26px; } }

/* ---------- pricing ---------- */
.plans{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; align-items:stretch; }
@media (max-width: 940px){ .plans{ grid-template-columns:1fr; max-width:460px; margin:0 auto; } }

.plan{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display:flex; flex-direction:column;
  position:relative;
}
.plan.is-featured{
  background: linear-gradient(180deg, #1c1c0f 0%, var(--surface) 40%);
  border-color: rgba(226,255,0,.5);
  box-shadow: 0 30px 60px -24px rgba(226,255,0,.18);
  transform: translateY(-10px);
}
@media (max-width: 940px){ .plan.is-featured{ transform:none; } }
.plan-tag{
  position:absolute; top:0; right:30px; transform:translateY(-50%);
  background: var(--neon); color:#0a0a16;
  font-family:var(--ff-head); font-weight:700; font-size:11.5px;
  letter-spacing:.1em; text-transform:uppercase;
  padding:7px 14px; border-radius:999px;
}
.plan-name{ font-family:var(--ff-head); font-size:13px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--text-dim); margin-bottom:14px; }
.plan.is-featured .plan-name{ color: var(--neon); }
.plan-price{ display:flex; align-items:baseline; gap:6px; margin-bottom:6px; }
.plan-price .cur{ font-size:16px; color:var(--text-dim); font-family:var(--ff-head); font-weight:600; }
.plan-price .num{ font-size:44px; font-family:var(--ff-head); font-weight:800; letter-spacing:-.02em; }
.plan-price .per{ font-size:13px; color:var(--text-dim); }
.plan-desc{ color:var(--text-dim); font-size:14.5px; margin-bottom:26px; }
.plan-feats{ display:flex; flex-direction:column; gap:13px; margin-bottom:30px; flex:1; }
.plan-feats li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text-dim); }
.plan-feats li svg{ width:17px; height:17px; color:var(--neon); flex-shrink:0; margin-top:3px; }
.plan-feats li b{ color:var(--text); font-weight:500; }

/* ---------- team / org chart ---------- */
.org-chart{ display:flex; flex-direction:column; align-items:center; margin-top:10px; }
.org-head-card{
  display:flex; align-items:center; gap:22px;
  background: var(--surface); border:1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 22px 32px;
  box-shadow: var(--shadow-md);
}
.org-head-card img{ width:84px; height:84px; border-radius:50%; object-fit:cover; object-position: center 20%; flex-shrink:0; border:2px solid var(--neon); }
.org-head-card .org-role{ display:block; font-family:var(--ff-head); font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--neon); margin-bottom:6px; }
.org-head-card h3{ margin:0; font-size:22px; }
@media (max-width:560px){ .org-head-card{ flex-direction:column; text-align:center; padding:26px; } }

.org-connector{ display:flex; align-items:center; justify-content:center; color:var(--border-strong); margin: 4px 0; }
.org-connector svg{ width:22px; height:40px; }

.org-children{ display:flex; gap:26px; flex-wrap:wrap; justify-content:center; width:100%; }
.org-card{
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px; width: 320px; max-width:100%;
  text-align:center;
  transition: transform .25s ease, border-color .25s ease;
}
.org-card:hover{ transform: translateY(-4px); border-color: var(--border-strong); }
.org-avatar{
  width:64px; height:64px; border-radius:50%; margin:0 auto 14px;
  background: var(--neon-soft); color:var(--neon);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-head); font-weight:700; font-size:19px;
  border:2px solid rgba(226,255,0,.4);
}
.org-reports{
  display:inline-block; font-size:11px; font-family:var(--ff-head); font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--text-faint); margin-bottom:10px;
}
.org-card h4{ font-size:17px; margin-bottom:2px; }
.org-sub{ display:block; font-size:12.5px; color:var(--text-dim); margin-bottom:12px; }
.org-card p{ font-size:14px; color:var(--text-dim); }

/* ---------- footer ---------- */
.site-footer{ border-top:1px solid var(--border); padding: 64px 0 28px; position:relative; z-index:1; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; }
@media (max-width: 800px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color:var(--text-dim); font-size:14px; max-width:34ch; }
.footer-col h4{ font-size:13px; letter-spacing:.1em; text-transform:uppercase; color:var(--text); margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color:var(--text-dim); font-size:14.5px; transition:color .2s; }
.footer-col a:hover{ color:var(--neon); }
.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  border:1px solid var(--border-strong);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{ background: var(--neon); border-color:var(--neon); color:#0a0a16; }
.footer-social svg{ width:17px; height:17px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-top:26px; border-top:1px solid var(--border);
  font-size:13px; color:var(--text-faint);
}

/* ---------- whatsapp floating button ---------- */
.wa-float{
  position: fixed; right:22px; bottom:22px; z-index:90;
  width:58px; height:58px; border-radius:50%;
  background: var(--neon); color:#0a0a16;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(226,255,0,.55);
  animation: floatpulse 2.6s ease-in-out infinite;
  opacity:0; transform: translateY(14px) scale(.9);
  pointer-events:none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-float.is-visible{ opacity:1; transform:none; pointer-events:auto; }
@media (max-width: 640px){
  .wa-float{ width:52px; height:52px; right:16px; bottom:16px; }
}
.wa-float svg{ width:26px; height:26px; }
@keyframes floatpulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}


/* ---------- misc ---------- */
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.tag-row span{
  font-size:12.5px; font-family:var(--ff-head); font-weight:600; letter-spacing:.05em;
  color:var(--text-dim); border:1px solid var(--border-strong); padding:8px 14px; border-radius:999px;
}
.divider{ height:1px; background: var(--border); margin: 64px 0; }
.text-neon{ color: var(--neon); }
.center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }

.quote-block{
  border-left: 3px solid var(--neon);
  padding-left: 26px;
  font-family: var(--ff-head);
  font-size: clamp(20px,2.4vw,26px);
  line-height:1.4;
  color: var(--text);
  max-width: 44ch;
}

.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13px; color:var(--text-dim); margin-bottom:8px; letter-spacing:.02em; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; background: var(--bg-soft); border:1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 13px 16px; color:var(--text); font-family:var(--ff-body); font-size:15px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--neon); }
.form-field textarea{ resize:vertical; min-height:110px; }

.contact-card{
  display:flex; align-items:center; gap:18px;
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-md); padding:24px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-card:hover{ border-color: var(--border-strong); transform: translateY(-3px); }
.contact-card .icn{
  width:52px; height:52px; border-radius:50%;
  background: var(--neon-soft); color:var(--neon);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-card .icn svg{ width:24px; height:24px; }
.contact-card h4{ font-size:15px; margin-bottom:4px; }
.contact-card p{ font-size:14px; color:var(--text-dim); }
