:root{
  --bg:#0b0b0b;
  --panel:#111214;
  --text:#ffffff;
  --muted:#b8b8b8;
  --accent:#F5A623;
  --accent2:#FFD36A;
  --stroke:rgba(255,255,255,.08);
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 600px at 20% 10%, rgba(245,166,35,.12), transparent 55%),
              radial-gradient(900px 600px at 80% 10%, rgba(255,211,106,.08), transparent 50%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{max-width:1160px;margin:0 auto;padding:0 18px}

.topbar{
  position:fixed; left:0; right:0; top:0;
  backdrop-filter: blur(10px);
  background: rgba(11,11,11,.55);
  border-bottom:1px solid var(--stroke);
  z-index:10;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{height:40px; width:auto; display:block}
.nav{
  display:flex; gap:18px; align-items:center;
}
.nav a{
  text-decoration:none; color:rgba(255,255,255,.85);
  font-weight:600; font-size:14px;
}
.nav a:hover{color:#fff}
.actions{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:.2s transform, .2s background, .2s border;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b0b;
  border:0;
}
.btn.primary:hover{background: linear-gradient(135deg, #ffb23e, #ffe39a)}
.btn.small{padding:10px 14px; font-size:13px}

.hero{
  padding-top:86px;
  padding-bottom:36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy{
  padding:28px 26px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height: 420px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color: rgba(255,255,255,.85);
  letter-spacing:.4px;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.hero-copy h1{
  margin:12px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height:1.05;
}
.hero-copy p{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height:1.7;
}
.hero-bullets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin:16px 0 0;
}
.pill{
  border:1px solid var(--stroke);
  border-radius: 14px;
  padding:12px 12px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
  font-weight:600;
  font-size: 13px;
}

.video-wrap{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.video-box{
  border-radius: calc(var(--radius) - 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 420px;
}
/* IMPORTANT: keep original video format (no crop) */
.video-box video{
  width:100%;
  height:100%;
  object-fit: contain; /* <- no crop */
  background:#000;
}

.video-caption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
}
.video-caption span{color:rgba(255,255,255,.82); font-weight:600; font-size:13px}

.section{padding:56px 0}
.section h2{
  margin:0 0 14px;
  font-size: clamp(22px, 2.3vw, 30px);
}
.lead{color:var(--muted); margin:0 0 20px; line-height:1.7}
.grid3{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
}
.feature{
  padding:18px 16px;
}
.feature h3{margin:8px 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.65; font-size:14px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; color:#0b0b0b;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding:8px 12px; border-radius:999px;
  font-size:12px;
}
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.steps{
  padding:18px 16px;
}
.step{
  display:flex; gap:12px;
  padding:14px 0;
  border-bottom:1px solid var(--stroke);
}
.step:last-child{border-bottom:0}
.step .n{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(245,166,35,.14);
  border:1px solid rgba(245,166,35,.25);
  font-weight:800; color: var(--accent2);
}
.step .txt strong{display:block}
.step .txt span{display:block; color:var(--muted); font-size:14px; line-height:1.6}

.quote{
  padding:18px 16px;
  display:flex; flex-direction:column; gap:12px;
}
.stars{letter-spacing:2px; color: var(--accent2)}
blockquote{
  margin:0;
  color: rgba(255,255,255,.88);
  line-height:1.75;
}
cite{color:var(--muted); font-style:normal; font-weight:600}

.form{
  padding:18px 16px;
}
form{display:grid; gap:12px}
input, textarea{
  width:100%;
  padding:14px 14px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.40)}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.small-note{color:rgba(255,255,255,.55); font-size:12px; line-height:1.6}

.footer{
  border-top:1px solid var(--stroke);
  padding:28px 0 80px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.footer a{color: var(--accent2); text-decoration:none; font-weight:800}
.footer .row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}

.whats-float{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index: 20;
}
.whats-float a{
  display:inline-flex; align-items:center; justify-content:center;
  width:54px; height:54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25D366, #7DFFA9);
  color:#072012;
  text-decoration:none;
  font-weight:900;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
}
.whats-float a.secondary{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.whats-float a:hover{transform: translateY(-1px)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-copy{min-height:auto}
  .video-box{min-height: 360px}
  .split{grid-template-columns: 1fr}
  .grid3{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .nav{display:none}
}


/* Google Reviews-like cards */
.reviews-wrap{
  margin-top: 18px;
}
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.review-card{
  background: #ffffff;
  color: #202124;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  padding: 16px 16px 14px;
}
.review-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.review-user{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.avatar{
  width:42px; height:42px;
  border-radius: 999px;
  background: #e8eaed;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#5f6368;
  flex: 0 0 auto;
}
.user-meta{
  min-width:0;
}
.user-meta .name{
  font-weight:800;
  font-size: 14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.user-meta .sub{
  color:#5f6368;
  font-size: 12px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.kebab{
  width:28px; height:28px;
  border-radius: 999px;
  display:grid; place-items:center;
  color:#5f6368;
}
.kebab::before{content:"⋮"; font-size:18px; line-height:1}
.review-rating{
  display:flex;
  align-items:center;
  gap:10px;
  margin: 6px 0 8px;
}
.gstars{
  letter-spacing: 1px;
  font-size: 14px;
  color: #fbbc04; /* Google star */
  font-weight: 900;
}
.when{
  color:#5f6368;
  font-size: 12px;
  font-weight: 600;
}
.review-text{
  color:#202124;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.owner-reply{
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 10px;
  margin-top: 10px;
}
.owner-reply .label{
  color:#5f6368;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}
.owner-reply p{
  margin:0;
  color:#202124;
  font-size: 13px;
  line-height: 1.55;
}
.review-actions{
  display:flex;
  gap:12px;
  margin-top: 10px;
  color:#5f6368;
  font-size: 12px;
  font-weight: 700;
}
.review-actions span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.review-actions .ico{
  width:16px; height:16px;
  display:inline-grid;
  place-items:center;
}
.review-cta{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.review-cta .note{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin:0;
}
@media (max-width: 920px){
  .reviews-grid{grid-template-columns: 1fr}
}
