:root{
  --primary:#00e5a8;
  --secondary:#3b82f6;
  --background:linear-gradient(135deg,#0f172a,#020617);
  --card:#0b1220;
  --hover:rgba(0,229,168,.15);
  --text:#ffffff;
  --muted:#cbd5f5;
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--background);
  color:var(--text);
  line-height:1.6;
}
p{color:var(--muted)}
a{text-decoration:none}

/* HEADER */
header{
  background:#020617;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  position:sticky;
  top:0;
}
header h2{color:var(--primary)}
nav a{
  color:white;
  margin-left:18px;
  font-weight:bold;
}
nav a:hover{color:var(--primary)}

/* DISCLAIMER */
.top-disclaimer{
  text-align:center;
  font-size:12px;
  background:rgba(255,255,255,.05);
  padding:6px;
  color:var(--muted);
}

/* HERO */
.hero{
  padding:120px 20px;
  text-align:center;
  background:
    linear-gradient(rgba(2,6,23,0.75), rgba(2,6,23,0.85)),
    url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1600&q=80");
  background-size:cover;
  background-position:center;
}
.hero h1{
  font-size:3em;
  color:var(--primary);
}
.hero p{
  max-width:800px;
  margin:15px auto 30px;
  font-size:18px;
  color:var(--muted);
}


/* BUTTONS */
.btn, .hero a{
  display:inline-block;
  padding:14px 34px;
  background:var(--primary);
  color:#022c22;
  border-radius:30px;
  font-weight:bold;
  transition:.3s;
}
.btn:hover, .hero a:hover{
  background:#2cffc2;
}

/* SECTIONS */
section{
  padding:80px 20px;
}

/* CARDS */
.cards{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  justify-content:center;
}
.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:25px;
  width:280px;
  text-align:center;
  transition:.3s;
}
.card:hover{
  transform:translateY(-8px);
  background:var(--hover);
  border-color:var(--primary);
}

/* IMAGE PLACEHOLDER */
.card img{
  width:100%;
  border-radius:12px;
  margin-bottom:15px;
}

/* FOOTER */
.site-footer{
  background:#020617;
  padding:30px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
}
.site-footer a{
  color:var(--primary);
  margin:0 12px;
  font-weight:bold;
}
.disclaimer{
  max-width:900px;
  margin:12px auto;
  font-size:13px;
  color:var(--muted);
}

/* MOBILE */
@media(max-width:768px){
  .hero h1{font-size:2em}
}
/* === CARD IMAGE STABILITY FIX === */
.card img{
  width:100%;
  height:180px;           /* fixed height */
  object-fit:cover;       /* crop instead of stretch */
  border-radius:12px;
  margin-bottom:15px;
}
/* === INNER PAGE HERO (NO BACKGROUND IMAGE) === */
.inner-hero{
  padding:70px 20px;
  text-align:center;
  background:#020617;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.inner-hero h1{
  color:var(--primary);
}

.inner-hero p{
  max-width:800px;
  margin:10px auto 0;
  color:var(--muted);
}
.card h3{
  min-height:48px;
}

.card p{
  min-height:60px;
}
/* ================= ADDITION (CALL BUTTON ONLY) ================= */
.call-only-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}

.call-only-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1DB954;
  color: #ffffff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .call-only-btn {
    right: 15px;
    bottom: 15px;
  }
}