body{
margin:0;
font-family:Arial,sans-serif;
background:#050505;
color:white;
}

.container{
width:min(1400px,92%);
margin:auto;
}

.header{
background:black;
border-bottom:1px solid rgba(255,204,0,.2);
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
height:120px;
}

.nav-links{
display:flex;
gap:28px;
align-items:center;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:15px;
}

.nav-links a:hover{
color:#facc15;
}

.call-btn{
background:#facc15;
color:black;
padding:16px 28px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
display:inline-block;
font-size:20px;
}

.hero{
min-height:900px;
display:flex;
align-items:center;

background:
linear-gradient(
90deg,
rgba(0,0,0,.82) 0%,
rgba(0,0,0,.58) 35%,
rgba(0,0,0,.22) 60%,
rgba(0,0,0,.08) 100%
),
url('hero2.jpg');

background-size:cover;
background-position:center center;
background-repeat:no-repeat;
}

.hero-content{
max-width:720px;
padding:80px 0;
}

.eyebrow{
color:#facc15;
font-weight:bold;
text-transform:uppercase;
letter-spacing:2px;
font-size:20px;
margin-bottom:18px;
}

h1{
font-size:72px;
line-height:.92;
margin:0 0 25px;
font-weight:900;
text-transform:uppercase;
}

.yellow{
color:#facc15;
}

.sub{
font-size:30px;
line-height:1.5;
color:#ddd;
margin-bottom:35px;
max-width:780px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:40px;
flex-wrap:wrap;
}

.primary-btn{
background:#facc15;
color:black;
padding:18px 32px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
display:inline-block;
font-size:24px;
}

.secondary-btn{
border:2px solid #fff;
color:white;
padding:18px 32px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
display:inline-block;
font-size:24px;
background:rgba(255,255,255,.05);
}

.features{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:0;
background:#080808;
border-top:1px solid rgba(255,204,0,.15);
border-bottom:1px solid rgba(255,204,0,.15);
}

.feature{
padding:30px;
border-right:1px solid rgba(255,255,255,.08);
}

.feature:last-child{
border-right:none;
}

.feature h3{
color:#facc15;
margin:0 0 10px;
font-size:22px;
}

.feature p{
margin:0;
color:#ccc;
font-size:17px;
line-height:1.5;
}

.reviews{
background:#000000;
color:#050505;
padding:70px 0;
}

.review-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1fr 1fr;
gap:22px;
align-items:stretch;
}

.google-box{
background:linear-gradient(135deg,#ffffff,#f3f3f3);
border:1px solid #e5e5e5;
border-radius:24px;
padding:34px;
box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.google-score{
font-size:72px;
font-weight:900;
line-height:1;
margin-bottom:8px;
}

.stars{
color:#facc15;
font-size:34px;
letter-spacing:2px;
margin:10px 0;
}

.google-box p{
font-size:20px;
line-height:1.4;
}

.review-card{
background:#ffffff;
border:1px solid #e5e5e5;
border-radius:24px;
padding:30px;
box-shadow:0 20px 45px rgba(0,0,0,.10);
position:relative;
}

.review-card:before{
content:"★★★★★";
display:block;
color:#facc15;
font-size:24px;
letter-spacing:2px;
margin-bottom:16px;
}

.review-card h4{
font-size:22px;
margin:0 0 12px;
font-weight:900;
}

.review-card p{
font-size:18px;
line-height:1.55;
margin:0;
color:#222;
}

@media(max-width:1100px){
.review-grid{
grid-template-columns:1fr;
}
}
@media(max-width:700px){

.logo{
height:80px;
}

h1{
font-size:44px;
}

.sub{
font-size:18px;
}

.hero{
min-height:auto;
padding:60px 0;
background-position:center right;
}

.cards{
grid-template-columns:1fr;
}

.features{
grid-template-columns:1fr;
}

.primary-btn,
.secondary-btn{
width:100%;
text-align:center;
font-size:20px;
}

.call-btn{
font-size:16px;
padding:14px 18px;
}

}.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  display:flex;
  z-index:9999;
  background:#000;
  border-top:1px solid rgba(250,204,21,.4);
}

.sticky-cta a{
  flex:1;
  text-align:center;
  padding:16px 10px;
  font-weight:900;
  text-decoration:none;
  font-size:18px;
}

.sticky-cta a:first-child{
  background:#facc15;
  color:#000;
}

.sticky-cta a:last-child{
  background:#111;
  color:#facc15;
}

@media(min-width:900px){
  .sticky-cta{
    display:none;
  }
}.why-us{
  background:#0a0a0a;
  padding:80px 20px;
}

.why-us .eyebrow{
  color:#facc15;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:14px;
  margin-bottom:10px;
}

.why-us h2{
  color:white;
  font-size:42px;
  line-height:1.1;
  margin-bottom:50px;
  max-width:700px;
}

.why-us .cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.why-us .card{
  background:#111;
  border:1px solid rgba(250,204,21,.15);
  border-radius:18px;
  padding:28px;
  transition:.3s;
}

.why-us .card:hover{
  transform:translateY(-6px);
  border-color:#facc15;
}

.why-us .card h3{
  color:#facc15;
  margin-bottom:12px;
  font-size:22px;
}

.why-us .card p{
  color:#ccc;
  line-height:1.6;
}.insta-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 22px;
  background:#facc15;
  color:black;
  text-decoration:none;
  border-radius:12px;
  font-weight:700;
  transition:.3s;
}

.insta-btn:hover{
  transform:translateY(-3px);
  background:white;
}.instagram-section{
  background:#050505;
  padding:90px 0;
}

.instagram-section{
  background:#050505;
  padding:120px 0;
  border-top:1px solid rgba(255,255,255,.05);
}

.instagram-section .eyebrow{
  margin-bottom:12px;
}

.instagram-section h2{
  color:white;
  font-size:36px;
  margin-bottom:50px;
  max-width:600px;
  line-height:1.1;}
.elfsight-app-eb6386cd-700b-4d86-94b0-b57454be99e8{
    border-radius:20px;
    overflow:hidden;
    max-width:700px;
    margin:0 auto;
}