/* ========== HERO ========== */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;
  padding:120px 48px 80px;overflow:hidden;
}
.hero-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.hero-bg img{position:absolute}
.hero-bg .bg1{top:-25%;right:-15%;width:850px;opacity:.22}
.hero-bg .bg2{bottom:-25%;left:-10%;width:650px;opacity:.18}

.hero-inner{
  position:relative;z-index:2;
  max-width:1140px;margin:0 auto;width:100%;
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
}
.hero-left h1{font-size:48px;font-weight:800;line-height:1.12;margin-bottom:18px;letter-spacing:-.5px}
.hero-left h1 span{display:block}
.hero-left p{font-size:16px;color:var(--text-muted);max-width:460px;margin-bottom:32px;line-height:1.75}
.hero-left p strong{color:var(--green);font-weight:700}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}

.hero-right{position:relative;display:flex;justify-content:center}
.hero-right .img-main{max-width:460px;position:relative;z-index:2;border-radius:16px}
.hero-right .img-float{
  position:absolute;z-index:3;max-width:220px;
  bottom:-20px;right:-10px;
  border-radius:12px;
  box-shadow:var(--shadow);
}

/* ========== LOGOS BAR ========== */
.logos-bar{
  padding:28px 48px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.logos-bar-inner{
  max-width:1140px;margin:0 auto;
  display:flex;align-items:center;gap:28px;flex-wrap:wrap;
}
.logos-bar-inner .label{
  font-size:12px;color:var(--text-dim);text-transform:uppercase;
  letter-spacing:2px;font-weight:600;white-space:nowrap;
}
.logos-bar-inner .logos{display:flex;gap:14px;flex-wrap:wrap}
.logos-bar-inner .logos a{display:block}
.logos-bar-inner .logos img{
  height:36px;opacity:.75;transition:opacity .3s;
  padding:4px 8px;
  border:1px solid var(--border);border-radius:8px;
  background:rgba(255,255,255,.02);
}
.logos-bar-inner .logos img:hover{opacity:1}

/* ========== SECTION ========== */
.section{padding:100px 48px;position:relative;overflow:hidden}
.section-bg{position:absolute;inset:0;pointer-events:none}
.section-bg img{width:100%;height:100%;object-fit:cover;opacity:.08}

.section-label{
  font-size:11px;font-weight:700;color:var(--green);
  text-transform:uppercase;letter-spacing:2.5px;margin-bottom:14px;
}
.section-title{
  font-size:38px;font-weight:800;line-height:1.15;margin-bottom:14px;
  letter-spacing:-.3px;
}
.section-desc{
  font-size:15px;color:var(--text-muted);max-width:560px;line-height:1.75;
  margin-bottom:56px;
}

/* ========== FEATURES (About section) ========== */
.about-layout{
  max-width:1140px;margin:0 auto;
  display:grid;
  grid-template-columns:1fr 280px 1fr;
  grid-template-rows:auto auto;
  gap:20px;
  align-items:start;
}
.about-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  transition:all .35s;
}
.about-card:hover{
  background:var(--bg-card-hover);
  border-color:var(--border-green);
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}
.about-card .icon{width:40px;margin-bottom:14px}
.about-card h3{font-size:18px;font-weight:700;margin-bottom:8px;text-transform:capitalize}
.about-card p{font-size:13.5px;color:var(--text-muted);line-height:1.7}

.about-center{
  grid-column:2;grid-row:1/3;
  display:flex;align-items:center;justify-content:center;
}
.about-center img{
  width:100%;max-width:260px;border-radius:16px;
}
.about-tl{grid-column:1;grid-row:1}
.about-bl{grid-column:1;grid-row:2}
.about-tr{grid-column:3;grid-row:1}
.about-br{grid-column:3;grid-row:2}

/* ========== SPECS ========== */
.specs-block{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  margin-top:80px;
}
.specs-imgs{display:flex;gap:16px}
.specs-imgs img{flex:1;border-radius:14px;max-width:48%}

/* ========== INTEGRATION STEPS ========== */
.steps-grid{
  max-width:960px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
  position:relative;
}
.steps-grid::before{
  content:'';position:absolute;top:44px;left:8%;right:8%;
  height:2px;
  background:linear-gradient(90deg,var(--green),var(--purple),var(--blue),var(--green));
  opacity:.2;
}
.step-item{text-align:center;position:relative;z-index:1}
.step-item .step-circle{
  width:88px;height:88px;margin:0 auto 18px;
  border-radius:50%;
  background:var(--bg);
  border:2px solid var(--border-green);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 30px rgba(233,201,49,.08);
}
.step-item .step-circle img{width:34px}
.step-item h4{font-size:14px;font-weight:700;margin-bottom:4px}
.step-item p{font-size:12.5px;color:var(--text-dim);padding:0 6px;line-height:1.5}

/* ========== PRICING ========== */
.pricing-specs{
  display:flex;justify-content:center;gap:40px;margin-bottom:48px;flex-wrap:wrap;
}
.pricing-spec{display:flex;align-items:center;gap:10px}
.pricing-spec .ps-icon{
  width:40px;height:40px;border-radius:10px;
  background:var(--green-08);
  display:flex;align-items:center;justify-content:center;
}
.pricing-spec .ps-icon img{width:22px}
.pricing-spec span{font-size:14px;font-weight:600;color:var(--text-muted)}

.pricing-grid{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.price-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 28px;
  display:flex;flex-direction:column;
  position:relative;
  transition:all .35s;
}
.price-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.price-card.featured{
  border-color:var(--border-green);
  background:linear-gradient(165deg,rgba(233,201,49,.06),rgba(255,255,255,.02));
}
.price-card.featured::after{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--green);border-radius:var(--radius-lg) var(--radius-lg) 0 0;
}
.price-card h3{font-size:22px;font-weight:800;margin-bottom:10px}
.price-card .price-amount{
  font-size:40px;font-weight:800;color:var(--green);margin-bottom:2px;
  letter-spacing:-1px;
}
.price-card .price-amount small{font-size:15px;color:var(--text-dim);font-weight:500;letter-spacing:0}
.price-card .price-period{font-size:13px;color:var(--text-dim);font-weight:600;margin-bottom:6px}
.price-card .price-desc{font-size:13.5px;color:var(--text-muted);margin-bottom:24px;line-height:1.55}
.price-card hr{border:none;height:1px;background:var(--border);margin-bottom:18px}
.price-card .benefits-title{
  font-size:11px;text-transform:uppercase;letter-spacing:1.5px;
  color:var(--text-dim);font-weight:700;margin-bottom:14px;
}
.price-card ul{flex:1;margin-bottom:28px}
.price-card ul li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13px;color:var(--text-muted);margin-bottom:10px;line-height:1.5;
}
.price-card ul li::before{
  content:'✓';
  min-width:18px;height:18px;border-radius:50%;
  background:var(--green-15);color:var(--green);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;margin-top:2px;
}

.cta-banner{
  max-width:1140px;margin:56px auto 0;
  position:relative;
  background:var(--bg-card);
  border:1px solid var(--border-green);
  border-radius:var(--radius-lg);
  padding:36px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  overflow:hidden;flex-wrap:wrap;
}
.cta-banner .cta-bg{position:absolute;inset:0;pointer-events:none;opacity:.06}
.cta-banner .cta-bg img{width:100%;height:100%;object-fit:cover}
.cta-banner p{font-size:18px;font-weight:700;position:relative;z-index:1;line-height:1.45}
.cta-banner p em{font-style:normal;color:var(--green)}
.cta-banner .btn{position:relative;z-index:1}

/* ========== TESTIMONIALS ========== */
.test-grid{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.test-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px 24px;
  display:flex;flex-direction:column;
  transition:all .3s;
}
.test-card:hover{transform:translateY(-3px);border-color:var(--border-green)}
.test-card .quote{
  font-size:14px;color:var(--text-muted);line-height:1.8;
  flex:1;margin-bottom:22px;
  padding-left:16px;border-left:2px solid rgba(233,201,49,.3);
}
.test-card .author{
  display:flex;align-items:center;gap:12px;
  padding-top:16px;border-top:1px solid var(--border);
}
.test-card .author img{
  width:44px;height:44px;border-radius:10px;object-fit:contain;
  background:rgba(255,255,255,.06);padding:3px;
}
.test-card .author h5{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.3px}
.test-card .author span{font-size:11.5px;color:var(--green);font-weight:500}

/* ========== GUIDES ========== */
.guides-grid{
  max-width:1140px;margin:0 auto;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.guide-card{
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;display:block;
  transition:all .35s;
}
.guide-card:hover{transform:translateY(-4px);border-color:var(--border-green);box-shadow:var(--shadow)}
.guide-card .thumb{width:100%;height:180px;object-fit:cover}
.guide-card .g-tag{
  display:inline-block;margin:14px 0 6px 20px;
  padding:3px 10px;background:var(--green-15);color:var(--green);
  font-size:10px;font-weight:700;border-radius:4px;text-transform:uppercase;letter-spacing:.5px;
}
.guide-card .g-body{padding:0 20px 20px}
.guide-card .g-body h4{font-size:16px;font-weight:700;margin-bottom:6px;line-height:1.35}
.guide-card .g-body p{font-size:12.5px;color:var(--text-dim);margin-bottom:10px;line-height:1.55}
.guide-card .g-meta{display:flex;gap:8px}
.guide-card .g-meta .tag{
  padding:2px 8px;background:rgba(255,255,255,.04);border-radius:4px;
  font-size:10.5px;color:var(--text-dim);
}

/* ========== RESPONSIVE: MAIN ========== */
@media(max-width:1024px){
  .hero{padding:110px 24px 60px}
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-left p{margin-left:auto;margin-right:auto}
  .hero-btns{justify-content:center}
  .hero-right{margin-top:36px}
  .section{padding:72px 24px}

  /* about: reset grid-row en todos los cards para evitar superposición */
  .about-layout{grid-template-columns:1fr;grid-template-rows:auto}
  .about-center{grid-column:1;grid-row:auto;order:-1}
  .about-center img{max-width:100%;max-height:280px;object-fit:contain}
  .about-tl,.about-bl,.about-tr,.about-br{grid-column:1;grid-row:auto}

  .specs-block{grid-template-columns:1fr;text-align:center}
  .specs-imgs{justify-content:center}
  .specs-imgs img{max-width:46%}

  .steps-grid{grid-template-columns:1fr 1fr;gap:24px}
  .steps-grid::before{display:none}

  .pricing-grid{grid-template-columns:1fr 1fr}
  .test-grid,.guides-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .hero-left h1{font-size:34px}
  .section-title{font-size:28px}

  .hero-right .img-float{max-width:160px;bottom:-10px;right:0}

  .specs-imgs{flex-direction:column;align-items:center}
  .specs-imgs img{max-width:100%}

  .steps-grid{grid-template-columns:1fr}
  .pricing-grid,.test-grid,.guides-grid{grid-template-columns:1fr}
  .pricing-specs{flex-direction:column;align-items:center}
  .cta-banner{flex-direction:column;text-align:center;padding:28px 24px}
  .logos-bar{padding:20px 24px}
}
@media(max-width:480px){
  .hero{padding:96px 16px 56px}
  .hero-left h1{font-size:28px}
  .section{padding:56px 16px}
  .section-title{font-size:24px}
  .hero-right .img-float{display:none}
  .about-card{padding:20px 16px}
  .price-card{padding:28px 20px}
  .cta-banner{padding:24px 16px}
}
