/* ══════════════════════════════════════════
   TRUE FITNESS — style.css (Redesigned)
   Red & Black theme · Smooth animations
══════════════════════════════════════════ */

/* ── ROOT ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
:root {
  --bg:        #080808;
  --bg2:       #0d0d0d;
  --card:      #111111;
  --card2:     #161616;
  --border:    #1e1e1e;
  --border2:   #2a2a2a;
  --red:       #dc2626;
  --red-dark:  #b91c1c;
  --red-dim:   rgba(220,38,38,0.10);
  --red-glow:  rgba(220,38,38,0.20);
  --white:     #f2f2f2;
  --muted:     #555;
  --muted2:    #888;
  --green:     #22c55e;
  --amber:     #f59e0b;
  --blue:      #3b82f6;
  --font:      -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(220,38,38,0.18); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes badgePop {
  0%   { transform: scale(0.6); opacity: 0; }
  75%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }

/* ── UTILITIES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; border: none;
  transition: all 0.25s; letter-spacing: 0.3px;
}
.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 20px rgba(220,38,38,0.3);
}
.btn-red:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
}
.btn-outline {
  background: transparent; border: 1.5px solid rgba(242,242,242,0.25); color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
  animation: slideInLeft 0.5s ease both;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  margin-bottom: 14px; line-height: 1.1;
}
.section-desc { color: var(--muted2); font-size: 15px; max-width: 520px; }

/* Red underline accent */
.section-title-wrap { position: relative; display: inline-block; margin-bottom: 16px; }
.section-title-wrap::after {
  content: '';
  position: absolute; bottom: -8px; left: 0;
  width: 48px; height: 3px; background: var(--red); border-radius: 2px;
  animation: lineGrow 0.6s ease 0.4s both; transform-origin: left;
}

.pill { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.pill-green  { background: rgba(34,197,94,0.12);  color: #4ade80; }
.pill-red    { background: rgba(220,38,38,0.15);   color: #f87171; }
.pill-amber  { background: rgba(245,158,11,0.12);  color: #fbbf24; }
.pill-blue   { background: rgba(59,130,246,0.12);  color: #93c5fd; }
.check-icon  { color: var(--red); flex-shrink: 0; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 40px;   /* add vertical padding */
  height: auto;        /* allow height to grow */
}

.nav-logo {
  display: flex;
  flex-direction: column;   /* ✅ stack vertically */
  align-items: center;      /* ✅ center everything */
  justify-content: center;
  gap: 4px;                 /* space between logo & text */
  min-width: 120px;
}

.logo-img {
  height: 50px;             /* 🔥 make logo bigger */
  width: auto;
  object-fit: contain;
}

.logo-circle {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
  box-shadow: 0 0 14px rgba(220,38,38,0.35);
}

.logo-name {
  font-size: 15px;          /* 🔥 smaller text */
  font-weight: 700;
  letter-spacing: 3px;      /* premium spacing */
  color: var(--white);
  opacity: 0.85;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted2);
  transition: color 0.2s; letter-spacing: 0.3px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-login {
  background: var(--red); border: none; color: #fff;
  padding: 9px 22px; border-radius: 7px; font-size: 13px; font-weight: 700;
  transition: all 0.2s; letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(220,38,38,0.25);
}
.nav-login:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-signup {
  background: var(--red); border: none; color: #fff;
  padding: 9px 22px; border-radius: 7px; font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.nav-signup:hover { background: var(--red-dark); }
.hamburger { display: none; background: none; border: none; color: var(--white); font-size: 22px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
  filter: brightness(0.2);
  transform: scale(1.05);
  animation: fadeIn 1.2s ease both;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.97) 40%, rgba(8,8,8,0.3));
}
/* Red glow blobs */
.hero-glow-1 {
  position: absolute; top: 10%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 0; right: 10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1; padding: 0 60px; max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
  animation: slideInLeft 0.6s ease 0.2s both;
}
.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 70px); font-weight: 900;
  line-height: 1.04; margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
  font-size: 16px; color: var(--muted2); margin-bottom: 36px;
  line-height: 1.75; max-width: 460px;
  animation: fadeUp 0.7s ease 0.45s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.55s both;
}
.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 44px; margin-top: 64px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp 0.7s ease 0.7s both;
}
.h-stat-num { font-size: 34px; font-weight: 900; color: var(--white); }
.h-stat-num span { color: var(--red); }
.h-stat-label {
  font-size: 11px; color: var(--muted2); text-transform: uppercase;
  letter-spacing: 0.12em; margin-top: 4px;
}

/* Red divider line */
.red-rule {
  height: 1px;
  background: linear-gradient(to right, var(--red) 0%, rgba(220,38,38,0.2) 50%, transparent 100%);
  margin: 0 0 48px;
  animation: lineGrow 0.8s ease 0.5s both;
  transform-origin: left;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img {
  border-radius: 16px; overflow: hidden; height: 480px;
  background: url('../Assets/True fitnes entr.png') center/cover;
  position: relative; border: 1px solid var(--border2);
}
.about-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), transparent 60%);
  z-index: 1;
}
.about-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 28px;
}
.about-feat {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 10px; padding: 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, transform 0.2s;
}
.about-feat:hover { border-color: rgba(220,38,38,0.3); transform: translateY(-2px); }
.feat-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--red-dim); border: 1px solid rgba(220,38,38,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.services-line {
  margin: 20px 0 30px;
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

.services-line strong {
  color: #fff;
}

/* ── TRAINERS ── */
.trainers { background: #050505; }
.trainers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px; margin-top: 44px;
}
.trainer-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.trainer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220,38,38,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.trainer-img { height: 220px; position: relative; overflow: hidden; }
.trainer-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.trainer-card:hover .trainer-img img { transform: scale(1.07); }
.trainer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent 55%);
}
.trainer-tag { position: absolute; bottom: 14px; left: 14px; }
.trainer-tag h4 { font-size: 16px; font-weight: 700; }
.trainer-tag p { font-size: 12px; color: var(--red); font-weight: 700; margin-top: 2px; }
.trainer-body { padding: 16px; }
.trainer-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted2); margin-bottom: 14px;
}
.trainer-star { color: var(--amber); }
.trainer-cta {
  width: 100%; padding: 10px; background: transparent;
  border: 1px solid var(--border2); color: var(--white);
  border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: all 0.25s; letter-spacing: 0.5px;
}
.trainer-cta:hover {
  background: var(--red); border-color: var(--red);
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}

/* ── PLANS SECTION (public) ── */
.plans { background: var(--bg2); position: relative; overflow: hidden; }
.plans::before {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px; margin-top: 44px;
}

.plan-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 14px; padding: 28px; position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cardReveal 0.5s ease both;
}
.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }
.plan-card:nth-child(4) { animation-delay: 0.4s; }
.plan-card:nth-child(5) { animation-delay: 0.5s; }

/* Top accent bar */
.plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background 0.3s;
}
.plan-card:hover { transform: translateY(-6px); border-color: #333; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.plan-card:hover::before { background: linear-gradient(to right, var(--red), rgba(220,38,38,0.3)); }

.plan-card.popular {
  border-color: var(--red);
  background: linear-gradient(160deg, #110404, #111111);
  animation: pulseRed 3s ease 1s infinite;
}
.plan-card.popular::before { background: linear-gradient(to right, var(--red), rgba(220,38,38,0.4)); }

.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(220,38,38,0.35);
  animation: badgePop 0.5s ease 0.7s both;
}

.plan-name {
  font-size: 13px; font-weight: 700; color: var(--muted2);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.plan-card.popular .plan-name { color: var(--red); }

.plan-price {
  font-size: 52px; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 4px; letter-spacing: -1px;
}
.plan-price sup { font-size: 22px; color: var(--red); vertical-align: super; font-weight: 700; }
.plan-price sub { font-size: 15px; font-weight: 400; color: var(--muted2); vertical-align: baseline; }

.plan-period {
  font-size: 12px; color: var(--muted); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}
.plan-savings { font-size: 12px; color: #22c55e; font-weight: 700; margin-bottom: 22px; }

.plan-divider {
  height: 1px; background: var(--border2); margin-bottom: 20px;
}

.plan-features { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #888; font-weight: 500;
}
.plan-features li .feat-dot {
  width: 5px; height: 5px; background: var(--red);
  border-radius: 50%; flex-shrink: 0;
}

.plan-btn {
  width: 100%; padding: 13px;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: all 0.25s; border: 1.5px solid var(--border2);
  background: transparent; color: var(--muted2);
  letter-spacing: 1px; text-transform: uppercase;
}
.plan-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }
.plan-card.popular .plan-btn {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 4px 18px rgba(220,38,38,0.35);
}
.plan-card.popular .plan-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 26px rgba(220,38,38,0.45);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */
.testimonials { background: #050505; }
.test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: 44px;
}
.test-card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: 14px; padding: 26px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.test-card::before {
  content: '"';
  position: absolute; top: 10px; right: 20px;
  font-size: 80px; font-weight: 900; color: rgba(220,38,38,0.06);
  line-height: 1; font-family: Georgia, serif;
}
.test-card:hover { border-color: rgba(220,38,38,0.25); transform: translateY(-4px); }
.test-stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.test-text {
  font-size: 14px; color: #999; line-height: 1.75;
  margin-bottom: 20px; font-style: italic; position: relative; z-index: 1;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
  border: 2px solid rgba(220,38,38,0.3);
}
.test-name { font-size: 14px; font-weight: 700; }
.test-sub { font-size: 12px; color: var(--muted2); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(6px);
  z-index: 9999; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  position: relative; background: #141414;
  border: 1px solid var(--border2); border-radius: 16px;
  padding: 32px; width: 100%; max-width: 440px;
  max-height: 92vh; overflow-y: auto; overflow-x: hidden;
  animation: fadeUp 0.28s ease both;
}
/* Modal red top accent */
.modal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), rgba(220,38,38,0.3));
  border-radius: 16px 16px 0 0;
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: #1a1a1a; border: 1px solid var(--border2);
  color: var(--muted2); font-size: 16px; line-height: 1;
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--white); border-color: #444; }
.modal h2 { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.modal p.sub { text-align: center; color: var(--muted2); font-size: 13px; margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 7px; color: var(--muted2);
}
.form-group input {
  width: 100%; background: #0d0d0d; border: 1px solid var(--border2);
  border-radius: 8px; padding: 12px 14px; color: var(--white);
  font-size: 14px; outline: none; transition: border-color 0.2s;
  font-family: var(--font);
}
.form-group input:focus { border-color: var(--red); }
.form-group input::placeholder { color: var(--muted); }
.otp-row { display: flex; gap: 10px; }
.otp-row input { flex: 1; }
.otp-btn {
  background: var(--red); border: none; color: #fff;
  padding: 12px 16px; border-radius: 8px; font-size: 13px; font-weight: 700;
  white-space: nowrap; transition: background 0.2s;
}
.otp-btn:hover { background: var(--red-dark); }
.modal-submit {
  width: 100%; padding: 13px; background: var(--red); border: none;
  border-radius: 8px; color: #fff; font-size: 14px; font-weight: 700;
  margin-top: 6px; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.modal-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.modal-footer { text-align: center; margin-top: 16px; font-size: 13px; color: var(--muted2); }
.modal-footer a { color: var(--red); font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--border2); margin: 20px 0; }

/* OTP */
#otpVerifyGroup { display: none; margin-top: 4px; margin-bottom: 4px; }
#otpVerifiedBadge {
  display: none; align-items: center; gap: 8px;
  background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.3);
  border-radius: 8px; padding: 10px 14px;
  margin-top: 12px; margin-bottom: 14px;
  font-size: 13px; color: #4ade80; font-weight: 600;
}
.otp-verify-btn {
  background: transparent; border: 1px solid rgba(220,38,38,0.5);
  color: var(--red); min-width: 100px; transition: all 0.2s;
}
.otp-verify-btn:hover { background: var(--red); color: #fff; }
.otp-verify-btn.verified {
  background: rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.4);
  color: #4ade80; cursor: default;
}
#signupBtn:disabled { opacity: 0.5; cursor: not-allowed; }
@keyframes timerPulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
#otpTimer.running { animation: timerPulse 1s infinite; }

/* ── FOOTER ── */
footer { background: #050505; border-top: 1px solid var(--border); padding: 70px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px; margin-bottom: 52px;
}
.footer-brand p { font-size: 13px; color: var(--muted2); margin: 14px 0 20px; line-height: 1.8; }
.social-row { display: flex; gap: 10px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 13px; color: var(--muted2); line-height: 1.6;
}
.footer-contact-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  text-align: center; font-size: 12px; color: var(--muted);
  letter-spacing: 0.5px;
}

/* ── SCROLL REVEAL (JS driven via class) ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--bg2); flex-direction: column;
    padding: 20px; gap: 16px; border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .logo-img {
  height: 36px;
}
.logo-name {
  font-size: 11px;
  letter-spacing: 2px;
}
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-content { padding: 0 24px; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .modal { padding: 24px 18px; max-height: 95vh; }
}

/* SOCIAL BUTTON */
.social-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  
  background: linear-gradient(135deg, #ff4d4d, #ff7a18);
  border: none;

  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.5);
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
}
.social-row a:hover {
  color: #e8281a;
}

.social-row img {
  transition: transform 0.3s;
}

.social-row img:hover {
  transform: scale(1.1);
}