/* =============================
   V2 - Offer Detail (Reusable)
   ============================= */

:root{
  --bg:#ffffff;
  --paper:#f4efe6;
  --wood1:#3a2415;
  --wood2:#2a1a10;
  --ink:#111827;
  --muted:#6b7280;

  --gold1:#f7d26a;
  --gold2:#f0b63f;
  --gold3:#cf8a16;

  --card:#ffffff;
  --line:rgba(15,23,42,.14);

  --radius:18px;
  --shadow: 0 14px 40px rgba(0,0,0,.16);
  --shadowSoft: 0 10px 28px rgba(0,0,0,.10);

  --wrap: 1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.v2{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 500px at 50% 0%, #ffffff 0%, #f7f2ea 55%, #efe6da 100%);
}

/* wrap */
.wrap, .heroWrap{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

/* ========= HERO ========= */
.hero{
  background-image:
    radial-gradient(900px 360px at 30% 30%, rgba(255,210,120,.20), rgba(0,0,0,0) 60%),
    radial-gradient(900px 360px at 70% 70%, rgba(255,210,120,.16), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)),
    url("../img/wood_v2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 34px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.heroWrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}

.heroLeft{
  color:#fff;
}

.heroRibbon{
  display:inline-flex;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbe28a, #f0b63f);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  margin-bottom: 14px;
}
.ribbonTxt{
  font-weight: 800;
  letter-spacing: .2px;
  color:#4a2a10;
  font-size: 14px;
}

.heroTitle{
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(28px, 3.2vw, 46px);
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
}
.heroSub{
  margin: 0 0 18px;
  max-width: 560px;
  font-size: clamp(15px, 1.45vw, 18px);
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.heroCtas{
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.btnPrimary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  color:#4a2a10;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  transition: transform .15s ease, filter .15s ease;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.btnPrimary:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btnPrimary:active{ transform: translateY(0px); }

.heroHint{
  font-size: 13px;
  color: rgba(255,255,255,.78);
  max-width: 520px;
}

/* seals */
.sealRow{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items:center;
}
.sealItem{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.sealItem img{
  height: 22px;
  width:auto;
  display:block;
}
.sealItem span{
  font-size: 12px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* Right frame like "art" */
.heroRight{
  display:flex;
  justify-content:center;
}
.heroFrame{
  position:relative;
  width: min(420px, 100%);
  border-radius: 22px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.heroCarousel{
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,.25);
  aspect-ratio: 4 / 5;
  position: relative;
}

.heroSlide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.01);
  transition: opacity .35s ease, transform .35s ease;
}
.heroSlide.isActive{
  opacity:1;
  transform: scale(1);
}
.heroSlide img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.heroPlaceholder{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.placeholderInner{
  text-align:center;
  padding: 22px;
  max-width: 280px;
}
.placeholderInner strong{
  display:block;
  font-size: 18px;
  margin-bottom: 8px;
}
.placeholderInner span{
  font-size: 13px;
  opacity:.85;
}

/* thumbs */
.heroThumbs{
  display:flex;
  gap: 10px;
  justify-content:center;
  padding: 10px 0 2px;
  flex-wrap: wrap;
}
.thumb{
  appearance:none;
  border: 0;
  background: transparent;
  padding:0;
  cursor:pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow:hidden;
  border: 2px solid rgba(255,255,255,.16);
  opacity: .82;
  transform: translateY(0);
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
}
.thumb:hover{ opacity: 1; transform: translateY(-1px); }
.thumb.isActive{ opacity: 1; border-color: rgba(247,210,106,.85); }
.thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.thumbDot{
  display:block;
  width:100%;
  height:100%;
  background: rgba(255,255,255,.18);
}

/* arrows */
.navArrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.navArrow:hover{ background: rgba(0,0,0,.42); }
.navArrow.prev{ left: -14px; }
.navArrow.next{ right: -14px; }
.navArrow::before{
  content:"";
  display:block;
  width: 10px;
  height: 10px;
  border-top: 3px solid rgba(255,255,255,.9);
  border-right: 3px solid rgba(255,255,255,.9);
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%) rotate(225deg);
}
.navArrow.next::before{
  transform: translate(-50%,-50%) rotate(45deg);
}

/* ========= SECTIONS ========= */
.section{
  padding: 54px 0;
}
.secTitle{
  margin:0 0 22px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  color: #1f2937;
}
.centerCta{
  display:flex;
  justify-content:center;
  margin-top: 22px;
}

/* Benefits */
.benefitSection{
  background:
    radial-gradient(900px 360px at 50% 0%, #fff 0%, #f8f1e6 55%, #f0e6d8 100%);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.benefitGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefitCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: var(--shadowSoft);
}
.benefitIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  font-weight: 900;
  color: #4a2a10;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  margin-bottom: 10px;
}
.benefitTitle{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
}
.benefitDesc{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Videos */
.videoSection{
  background: #fff;
}
.videoGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.videoCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadowSoft);
}
.videoFrame{
  aspect-ratio: 16 / 9;
  background: #000;
}
.videoFrame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.videoTitle{
  padding: 12px 14px;
  font-weight: 800;
  font-size: 14px;
  color:#1f2937;
}

/* Testimonials */
.testiSection{
  background:
    linear-gradient(180deg, rgba(58,36,21,.10), rgba(58,36,21,.02)),
    radial-gradient(900px 360px at 50% 0%, #fff 0%, #f7f1e8 55%, #efe6da 100%);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.testiGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testiCard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadowSoft);
}
.testiTop{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  overflow:hidden;
  border: 2px solid rgba(207,138,22,.28);
  background: rgba(207,138,22,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color:#4a2a10;
}
.avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.whoName{
  font-weight: 900;
}
.whoMeta{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.testiText{
  color:#374151;
  font-size: 13px;
  line-height: 1.55;
}

/* Packages */
.packagesSection{
  background: #fff;
}
.packGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pack{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadowSoft);
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.packFeatured{
  border-color: rgba(240,182,63,.55);
  box-shadow: 0 20px 42px rgba(0,0,0,.12);
}
.packTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.packTitle{
  margin:0;
  font-size: 18px;
  font-weight: 950;
}
.pill{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold1), var(--gold2));
  color:#4a2a10;
  border: 1px solid rgba(255,255,255,.3);
}
.packImg{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
}
.packImg img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.packText{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.packList{
  margin:0;
  padding-left: 16px;
  color:#374151;
  font-size: 13px;
  line-height: 1.55;
}
.packPrice{
  padding-top: 4px;
}
.priceFrom{
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
  font-weight: 700;
}
.priceNow{
  font-size: 28px;
  font-weight: 950;
  color:#111827;
}
.btnPack{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 13px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  color:#ffffff;
  background: #16a34a;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  transition: transform .15s ease, filter .15s ease;
  text-transform: uppercase;
  letter-spacing: .2px;
}
.btnPack:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btnPack:active{ transform: translateY(0px); }

/* final CTA */
.finalCtaBox{
  margin-top: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(58,36,21,.92), rgba(42,26,16,.92));
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
  padding: 16px;
}
.finalCtaInner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  color:#fff;
}
.finalTitle{
  font-size: 18px;
  font-weight: 950;
}
.finalSub{
  font-size: 13px;
  opacity: .85;
}

/* footer */
.footer{
  padding: 24px 0 34px;
  background: linear-gradient(0deg, rgba(58,36,21,.92), rgba(42,26,16,.92));
  color: rgba(255,255,255,.82);
}
.footerTxt{
  font-size: 13px;
}

/* ========= Responsive ========= */
@media (max-width: 980px){
  .heroWrap{ grid-template-columns: 1fr; }
  .heroRight{ justify-content:flex-start; }
  .heroFrame{ width: min(520px, 100%); }
  .benefitGrid{ grid-template-columns: repeat(2, 1fr); }
  .testiGrid{ grid-template-columns: repeat(2, 1fr); }
  .packGrid{ grid-template-columns: 1fr; }
  .videoGrid{ grid-template-columns: 1fr; }
  .finalCtaInner{ flex-direction: column; align-items:flex-start; }
}

@media (max-width: 520px){
  .hero{ padding: 26px 0 18px; }
  .heroFrame{ padding: 10px; }
  .navArrow.prev{ left: -8px; }
  .navArrow.next{ right: -8px; }
  .benefitGrid{ grid-template-columns: 1fr; }
  .testiGrid{ grid-template-columns: 1fr; }
}