.ads-page header.hero{
  padding-bottom:64px;
}

.ads-page .navbar{
  margin-bottom:36px;
}

.ads-page .hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(340px, 460px);
  align-items:start;
  gap:32px;
}

.ads-page .hero h1{
  max-width:760px;
}

.ads-page .hero p.lead{
  max-width:760px;
}

.ads-page .hero-actions{
  margin-bottom:20px;
}

.ads-page .hero-side{
  display:block;
}

.ads-page .hero-card{
  position:sticky;
  top:16px;
}

.ads-page .form-group textarea{
  min-height:96px;
}

.ads-page .form-help{
  color:var(--text-light);
  font-size:13px;
  line-height:1.5;
  margin-top:12px;
  text-align:center;
}

.ads-page .trust-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:24px 0 0;
}

.ads-page .trust-item{
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:16px;
}

.ads-page .trust-item strong{
  color:#fff;
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.ads-page .trust-item span{
  color:#d7dbe2;
  display:block;
  font-size:14px;
  line-height:1.5;
}

.ads-page .direct-contact{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  color:#d7dbe2;
  font-size:15px;
  margin-top:12px;
}

.ads-page .direct-contact a{
  color:var(--gold-light);
  font-weight:800;
}

.ads-page .conversion-strip{
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  padding:18px 0;
}

.ads-page .conversion-strip-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.ads-page .conversion-strip-item{
  border-left:3px solid var(--gold);
  padding-left:14px;
}

.ads-page .conversion-strip-item strong{
  display:block;
  font-size:14px;
  line-height:1.3;
}

.ads-page .conversion-strip-item span{
  color:var(--text-light);
  display:block;
  font-size:13px;
  margin-top:3px;
}

.ads-section-dark{
  background:linear-gradient(135deg, #0e1728 0%, #1a2640 100%);
  color:#fff;
}

.ads-section-dark .section-title{
  color:#fff;
}

.ads-section-dark .section-subtitle{
  color:rgba(255,255,255,0.72);
}

.ads-card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.ads-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:24px;
}

.ads-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.ads-card p{
  color:var(--text-light);
  font-size:15px;
}

.ads-card-dark{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(201,162,39,0.16);
}

.ads-card-dark h3{
  color:#fff;
}

.ads-card-dark p{
  color:rgba(255,255,255,0.72);
}

.ads-steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.ads-step{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:24px;
}

.ads-step-number{
  align-items:center;
  background:linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius:999px;
  color:#111;
  display:flex;
  font-size:18px;
  font-weight:900;
  height:44px;
  justify-content:center;
  margin-bottom:16px;
  width:44px;
}

.ads-step h3{
  font-size:19px;
  margin-bottom:8px;
}

.ads-step p{
  color:var(--text-light);
  font-size:15px;
}

.ads-final-grid{
  align-items:center;
  display:grid;
  gap:32px;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
}

.ads-final-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-lg);
  padding:28px;
}

.ads-final-card h3{
  color:var(--gold-light);
  margin-bottom:12px;
}

.ads-final-card p{
  color:#d6dbe5;
  margin-bottom:18px;
}

.ads-mobile-sticky{
  display:none;
}

@media (max-width:1024px){
  .ads-page .hero-grid,
  .ads-final-grid{
    grid-template-columns:1fr;
  }

  .ads-page .hero-card{
    position:static;
  }

  .ads-page .conversion-strip-grid,
  .ads-steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:768px){
  .ads-page .trust-list,
  .ads-page .conversion-strip-grid,
  .ads-card-grid,
  .ads-steps{
    grid-template-columns:1fr;
  }

  .ads-page .direct-contact{
    display:block;
  }

  .ads-page .direct-contact span{
    display:block;
    margin:6px 0;
  }

  .ads-page .hero-actions .btn{
    width:100%;
  }

  .ads-mobile-sticky{
    background:rgba(11,18,32,0.96);
    border-top:1px solid rgba(201,162,39,0.24);
    bottom:0;
    display:grid;
    gap:8px;
    grid-template-columns:1fr 1fr;
    left:0;
    padding:10px;
    position:fixed;
    right:0;
    z-index:998;
  }

  .ads-mobile-sticky .btn{
    font-size:13px;
    padding:12px 10px;
    width:100%;
  }

  .ads-page footer{
    padding-bottom:92px;
  }

  .ads-page .floating-whatsapp{
    bottom:84px;
  }
}
