/* =========================================================
   INDEX
   01. Hero
   02. Breadcrumbs
   03. Grilles
   04. Cards / Stats / Badges
   05. Split / Media / Stack
   06. Steps
   07. Band dark
   08. FAQ
   09. SEO box
   10. CTA final
   11. Responsive
   ========================================================= */

/* =========================================================
   01. HERO
   ========================================================= */
.hero{
  padding:38px 0 30px;
}

.hero-shell{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  background:
    radial-gradient(circle at left top, rgba(197,106,42,.14), transparent 30%),
    linear-gradient(135deg,#fff 0%,#f4ebe2 100%);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-md);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:40px;
  align-items:center;
  padding:48px;
}

.hero-topline{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:.9rem;
  font-weight:700;
  color:#2d2925;
}

.hero-copy p{
  max-width:64ch;
}

.hero-highlight{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:28px;
}

.hero-box{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.06);
}

.hero-box strong{
  display:block;
  font-size:1rem;
  margin-bottom:4px;
}

.hero-box span{
  display:block;
  color:var(--muted);
  font-size:.94rem;
}

.hero-media{
  position:relative;
}

.hero-frame{
  aspect-ratio:4/5;
  border-radius:30px;
  overflow:hidden;
  background:#ddd4cb;
  box-shadow:var(--shadow-md);
}

.hero-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-floating{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  background:rgba(17,17,17,.9);
  color:#fff;
  border-radius:20px;
  padding:18px 20px;
}

.hero-floating strong{
  display:block;
  font-size:1rem;
}

.hero-floating span{
  display:block;
  margin-top:5px;
  font-size:.94rem;
  color:rgba(255,255,255,.84);
}

/* =========================================================
   02. BREADCRUMBS
   ========================================================= */
.breadcrumbs{
  padding-top:22px;
}

.breadcrumbs ol{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
  padding:0;
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.breadcrumbs li:not(:last-child)::after{
  content:"/";
  margin-left:8px;
  color:rgba(0,0,0,.35);
}

/* =========================================================
   03. GRILLES
   ========================================================= */
.stats-grid,
.benefits-grid,
.steps-grid,
.faq-grid,
.seo-grid{
  display:grid;
  gap:22px;
}

.stats-grid{
  grid-template-columns:repeat(4,1fr);
}

.benefits-grid{
  grid-template-columns:repeat(3,1fr);
}

.steps-grid{
  grid-template-columns:repeat(4,1fr);
}

.faq-grid,
.seo-grid{
  grid-template-columns:repeat(2,1fr);
}

/* =========================================================
   04. CARDS / STATS / BADGES
   ========================================================= */


.stat-card{
  text-align:center;
  padding:26px 22px;
}

.stat-card strong{
  display:block;
  font-size:1.8rem;
  line-height:1;
  margin-bottom:8px;
}

.stat-card span{
  display:block;
  color:var(--muted);
  font-weight:600;
}

.icon-badge{
  width:54px;
  height:54px;
  border-radius:18px;
  background:var(--primary-soft);
  color:var(--primary-dark);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  font-weight:800;
  margin-bottom:16px;
}

/* =========================================================
   05. SPLIT / MEDIA / STACK
   ========================================================= */
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
}

.media-panel{
  aspect-ratio:4/5;
  border-radius:30px;
  overflow:hidden;
  background:#ddd5cc;
  box-shadow:var(--shadow-md);
}

.media-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.stack-list{
  display:grid;
  gap:14px;
  margin-top:24px;
}

.stack-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}

.tick{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#edf7f0;
  color:var(--success);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex:0 0 auto;
}

/* =========================================================
   06. STEPS
   ========================================================= */
.steps-grid .card{
  position:relative;
  padding-top:72px;
}

.step-number{
  position:absolute;
  top:22px;
  left:22px;
  width:36px;
  height:36px;
  border-radius:999px;
  background:var(--dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

/* =========================================================
   07. BAND DARK
   ========================================================= */
.band-dark{
  background:linear-gradient(135deg,#111 0%,#1c1c1c 100%);
  color:#fff;
  border-radius:34px;
  padding:42px;
  box-shadow:var(--shadow-md);
}

.band-dark p{
  color:rgba(255,255,255,.82);
}

/* =========================================================
   08. FAQ
   ========================================================= */
.faq-item details{
  height:100%;
  padding:18px 20px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-sm);
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  font-weight:800;
  color:var(--text);
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  float:right;
  color:var(--primary-dark);
  font-size:1.25rem;
  line-height:1;
}

.faq-item details[open] summary::after{
  content:"−";
}

.faq-item .answer{
  padding-top:12px;
}

/* =========================================================
   09. SEO BOX
   ========================================================= */
.seo-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow-sm);
}

/* =========================================================
   10. CTA FINAL
   ========================================================= */
.cta-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:linear-gradient(135deg,#cb6e2c 0%,#9b521d 100%);
  color:#fff;
  border-radius:34px;
  padding:38px;
  box-shadow:var(--shadow-md);
}

.cta-final p{
  color:rgba(255,255,255,.86);
  margin-bottom:0;
}

.cta-final .btn-secondary{
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.26);
}

/* =========================================================
   11. RESPONSIVE
   ========================================================= */
@media (max-width:1120px){
  .hero-grid,
  .split{
    grid-template-columns:1fr;
  }

  .stats-grid,
  .benefits-grid,
  .steps-grid,
  .faq-grid,
  .seo-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:860px){
  .hero-grid{
    padding:26px;
  }

  

  .cta-final{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .stats-grid,
  .benefits-grid,
  .steps-grid,
  .faq-grid,
  .seo-grid,
  .hero-highlight{
    grid-template-columns:1fr;
  }

  .hero-floating{
    position:static;
    margin-top:16px;
  }

  
  .seo-box,
  .band-dark,
  .cta-final{
    padding:22px;
  }
}