/* ═══════════════════════════════════════════════════════════════
   FITFORM FITNESS HUB — style.css
   Theme: Dark & Powerful | Black + Neon Green
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green:    #B3FF3B;
  --green-d:  #8fd429;
  --black:    #0a0a0a;
  --dark:     #111111;
  --card:     #161616;
  --card2:    #1c1c1c;
  --white:    #f5f5f5;
  --gray:     #888;
  --gray2:    #555;
  --border:   #222;
  --radius:   3px;
  --font:     'Barlow', sans-serif;
  --font-c:   'Barlow Condensed', sans-serif;

  /* ── HEADING FONT — change this one line to swap all headings ──
     'MuseoModerno'    → current (modern, rounded, bold)
     'Bebas Neue'      → tall condensed all-caps classic
     'Barlow Condensed'→ tight sporty condensed
     'Oswald'          → strong editorial condensed
     'Teko'            → ultra-tight techy display
     Remember: also update the Google Fonts <link> in index.html  */
  --font-d:   'MuseoModerno', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
input, select, textarea, button { font-family: var(--font); }

/* ── Utility ────────────────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--white);
}
.section-sub {
  font-size: 15px;
  color: #777;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0;
}
section { padding: 100px 5%; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #cbff6a; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid #333;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#navbar.scrolled { background: rgba(10,10,10,.98); }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* SVG is very wide (FitForm wordmark spans full width), so cap it */
  max-width: 200px;
  object-fit: contain;
}
/* Remove old wordmark styles — no longer needed */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: #cbff6a !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  inset: 70px 0 0;
  background: rgba(10,10,10,.98);
  z-index: 999;
  padding: 32px 5%;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mm-link {
  font-family: var(--font-d);
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid #1e1e1e;
  transition: color .2s;
}
.mm-link:hover { color: var(--green); }
.mm-cta { color: var(--green); border-bottom: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(179,255,59,.07) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,255,59,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,255,59,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp .7s ease both;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--green);
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(58px, 8.5vw, 112px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p {
  font-size: 16px;
  color: #999;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-line {
  position: absolute;
  right: 5%; top: 20%; bottom: 30%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: .25;
}
.hero-stats {
  position: absolute;
  right: 5%; bottom: 10%;
  display: flex;
  gap: 44px;
  z-index: 2;
}
.stat-num {
  font-family: var(--font-d);
  font-size: 48px;
  color: var(--green);
  line-height: 1;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Hero rotating badge ─────────────────────────────────────── */
.hero-badge-wrap {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  /* hidden on mobile — see responsive section */
}
.hero-badge-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  animation: spinBadge 14s linear infinite;
  /* drop a soft green glow so it feels part of the dark theme */
  filter: drop-shadow(0 0 28px rgba(179,255,59,.25));
}
@keyframes spinBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Marquee ────────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.mitem {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 36px;
  font-family: var(--font-c);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
}
.mdot { display: inline-block; width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Services ───────────────────────────────────────────────── */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--card);
  padding: 42px 34px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .4s ease;
}
.service-card:hover { background: #1a1a1a; }
.service-card:hover::after { width: 100%; }
.snum {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-d);
  font-size: 60px;
  color: #1e1e1e;
  line-height: 1;
  user-select: none;
}
.sicon {
  width: 46px; height: 46px;
  margin-bottom: 26px;
  color: var(--green);
}
.service-card h3 {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p { font-size: 13px; color: #666; line-height: 1.7; font-weight: 300; }

/* ── Why Us ─────────────────────────────────────────────────── */
.why-section {
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; }
.why-big-num {
  font-family: var(--font-d);
  font-size: 200px;
  line-height: 1;
  color: #161616;
  letter-spacing: -4px;
  user-select: none;
}
.why-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: var(--black);
  padding: 26px 34px;
  text-align: center;
  min-width: 200px;
}
.wbnum { font-family: var(--font-d); font-size: 52px; line-height: 1; letter-spacing: 2px; }
.wbtext { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.why-points { display: flex; flex-direction: column; gap: 30px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.wp-icon {
  width: 38px; height: 38px;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.why-point h4 {
  font-family: var(--font-c);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--white);
}
.why-point p { font-size: 13px; color: #666; line-height: 1.6; font-weight: 300; }

/* ── BMI Calculator ─────────────────────────────────────────── */
.bmi-section {
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
  padding: 100px 5%;
}
.bmi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.bmi-left { padding-top: 8px; }

/* BMI scale */
.bmi-scale { margin-top: 40px; }
.bmi-scale-bar {
  display: flex;
  height: 14px;
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 6px;
}
.bmi-seg {
  flex: 1;
  font-size: 0;
}
.seg-under { background: #4fc3f7; }
.seg-normal { background: var(--green); }
.seg-over { background: #ffb74d; }
.seg-obese { background: #ef5350; }
.bmi-scale-nums {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.bmi-needle-wrap { position: relative; height: 16px; }
.bmi-needle {
  position: absolute;
  top: 0;
  width: 3px;
  height: 16px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: left .6s ease;
}

/* BMI card */
.bmi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
}

.unit-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.utbtn {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.utbtn.active {
  background: var(--green);
  color: var(--black);
}

.bmi-fields { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.bmi-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}
.field-group input,
.field-group select,
.field-group textarea {
  background: #111;
  border: 1px solid #252525;
  color: var(--white);
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--green); }
.field-group input::placeholder,
.field-group textarea::placeholder { color: #444; }
.field-group select { appearance: none; cursor: pointer; }
.field-group select option { background: #111; }
.field-group textarea { height: 110px; resize: none; }

.bmi-calc-btn { width: 100%; margin-top: 4px; }

/* BMI Result */
.bmi-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #222;
  animation: fadeUp .4s ease both;
}
.bmi-result-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.bmi-score-wrap { text-align: center; }
.bmi-score {
  font-family: var(--font-d);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--green);
}
.bmi-score-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.bmi-category {
  font-family: var(--font-c);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
}
.cat-under  { background: rgba(79,195,247,.15); color: #4fc3f7; }
.cat-normal { background: rgba(179,255,59,.12); color: var(--green); }
.cat-over   { background: rgba(255,183,77,.12); color: #ffb74d; }
.cat-obese  { background: rgba(239,83,80,.12);  color: #ef5350; }

.bmi-message {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 300;
}
.bmi-ideal {
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 20px;
  font-weight: 300;
}
.bmi-ideal strong { color: var(--green); font-weight: 600; }

.bmi-cta-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.5;
}
.bmi-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2px;
}
.pricing-card {
  background: var(--card);
  padding: 42px 34px;
  position: relative;
  transition: transform .2s;
}
.pricing-card.featured {
  background: var(--green);
  z-index: 2;
  transform: scaleY(1.02);
}
.pricing-card.featured * { color: var(--black) !important; }
.pricing-card.featured .pricing-btn { background: var(--black); color: var(--green) !important; }

.plan-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 26px;
}
.price-amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
.pcur { font-family: var(--font-c); font-size: 18px; font-weight: 600; color: var(--green); margin-top: 10px; }
.pnum { font-family: var(--font-d); font-size: 68px; line-height: 1; color: var(--white); }
.pperiod { display: block; font-size: 12px; color: var(--gray); margin-bottom: 28px; }
.pdivider { height: 1px; background: #252525; margin: 0 0 26px; }
.pricing-card.featured .pdivider { background: rgba(0,0,0,.15); }
.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 300;
}
.pf.dim { opacity: .35; }
.pcheck {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(179,255,59,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--green);
}
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  margin-top: 28px;
  border: 1px solid #333;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.pricing-btn:hover { border-color: var(--green); color: var(--green); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-section {
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
  padding: 100px 5%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.ci-icon {
  width: 42px; height: 42px;
  background: #1c1c1c;
  border: 1px solid #272727;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.ci-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 3px;
}
.ci-val { font-size: 14px; color: var(--white); font-weight: 400; }

.contact-form-wrap { display: flex; flex-direction: column; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-submit { width: 100%; margin-top: 4px; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 60px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo {
  margin-bottom: 14px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
/* Remove old footer-logo span styles */
.footer-desc { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  background: #161616;
  border: 1px solid #252525;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: #555;
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 {
  font-family: var(--font-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: #555; font-weight: 300; transition: color .2s; }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #444;
  font-weight: 300;
}

/* ── Floating Buttons ───────────────────────────────────────── */
.floats {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  overflow: hidden;
}
.float-btn:hover { transform: scale(1.05); }
.float-wa { background: #25d366; color: #fff; }
.float-call { background: var(--green); color: var(--black); }
.float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width .3s ease;
}
.float-btn:hover .float-label { max-width: 100px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats, .hero-line, .hero-badge-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .bmi-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.featured { transform: none; }
  section { padding: 70px 5%; }
  .bmi-section { padding: 70px 5%; }
  .contact-section { padding: 70px 5%; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 56px; }
  .bmi-fields-row { grid-template-columns: 1fr; }
}

.pricing-card {
  border: 1px solid #333;
  transition: border-color .2s, color .2s;
}
.pricing-card:hover { border-color: var(--green); }
.pricing-card:hover .plan-tag { color: var(--green); }