/* ---------------- GLOBAL ---------------- */
:root{
  --bg:#0d0d0d;
  --text:#f5f5f5;
  --muted:#aaaaaa;
  --accent:#fbbf24; /* gold */
  --card:#111111;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:var(--bg); color:var(--text); line-height:1.6;
}
h1,h2,h3{font-weight:700}
a{color:var(--accent); text-decoration:none}
.accent{color:var(--accent)}
.muted{color:var(--muted); font-size:.95rem}

/* ---------------- BUTTONS ---------------- */
.btn{
  display:inline-block; padding:14px 24px; border-radius:28px;
  background:var(--accent); color:#111; font-weight:700; transition:.25s;
  border:none; cursor:pointer;
}
.btn:hover{filter:brightness(1.07)}
.btn.small{padding:10px 18px; font-size:.9rem}

/* ---------------- LAYOUT ---------------- */
.section{padding:80px 20px}
.container{max-width:1200px; margin:0 auto}
.grid{display:grid; gap:24px}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.grid-4{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}

/* ---------------- HERO ---------------- */
.hero{position:relative; height:90vh; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden}
.hero .bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.hero .overlay{position:absolute; inset:0;
  background:
    radial-gradient(1200px 60% at 50% 90%, rgba(0,0,0,.58), transparent 70%),
    linear-gradient(to top, rgba(0,0,0,.80) 0%, rgba(0,0,0,.50) 52%, rgba(0,0,0,.12) 100%);
}
.hero .content{position:relative; z-index:2; padding:20px; max-width:800px}
.hero h1{font-size:2.8rem; margin-bottom:14px}
.hero p{font-size:1.15rem; margin-bottom:26px}

/* ---------------- CARDS ---------------- */
.card{background:var(--card); border-radius:12px; padding:22px; text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.25)}
.card img{width:100%; height:auto; border-radius:8px; display:block}
.card h3{margin:10px 0 8px}

/* Icon circle inside cards */
.icon-wrap{width:110px; height:110px; margin:-58px auto 16px; border-radius:50%;
  background:#0f0f0f; border:4px solid var(--accent); display:grid; place-items:center}
.icon-wrap img{width:80px; height:80px; object-fit:contain}

/* ---------------- TESTIMONIALS ---------------- */
#testimonials h2{text-align:center; font-size:2.2rem; margin-bottom:10px}

/* Famewall collapsible container */
.reviews-collapsed{
  max-height:560px; /* enough to tease content */
  overflow:hidden; position:relative;
}
.reviews-collapsed::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:90px;
  background:linear-gradient(to top, rgba(13,13,13,1), rgba(13,13,13,0));
}
.reviews-expanded{max-height:none; overflow:visible}
.reviews-toggle{text-align:center; margin-top:18px}

/* Famewall iframe polish */
.famewall-embed iframe{border-radius:12px; box-shadow:0 0 20px rgba(0,0,0,.3)}

/* ---------------- WHY ---------------- */
#why h2{text-align:center; margin-bottom:10px}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:768px){
  .hero h1{font-size:2.1rem}
  .hero p{font-size:1rem}
  .icon-wrap{width:96px; height:96px; margin:-50px auto 14px; border-width:3px}
  .icon-wrap img{width:70px; height:70px}
}

/* Generic button style already exists in your file */

/* Shell is completely hidden until user clicks */
.reviews-shell[hidden] { display: none; }

/* Optional: small loading state while the embed JS hydrates */
.reviews-shell.loading {
  min-height: 220px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 37%, rgba(255,255,255,0.06) 63%) 0 0 / 400px 100%,
    #111;
  animation: shimmer 1.2s infinite;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  margin-top: 16px;
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Famewall iframe polish (keep if you already have it) */
.famewall-embed iframe {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
}

