/* =========================================================
   ProDentim — shared stylesheet
   Used by index.html and every secondary page.
   ========================================================= */

:root{
  --green:#12794f;
  --green-dark:#0c5c3b;
  --green-deep:#0a4d32;
  --sage:#8fae96;          /* bonus + guarantee background */
  --sage-dark:#7a9c82;
  --gold:#f5c518;
  --gold-dark:#d9a900;
  --ink:#242a2d;
  --body:#4c5358;
  --muted:#727a7f;
  --line:#e2e6e3;
  --line-soft:#eef1ef;
  --tint:#f4f8f5;
  --link:#4d7ba6;
  --page:#ffffff;
  --shell:1180px;
  --radius:10px;
  --shadow:0 12px 30px rgba(18,60,40,.08);
}

*,*::before,*::after{box-sizing:border-box;}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--page);
  color:var(--body);
  font-family:"Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

img{max-width:100%;height:auto;display:block;}
a{color:var(--green);}
a:focus-visible,button:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

.shell{
  width:100%;
  max-width:var(--shell);
  margin-inline:auto;
  padding-inline:20px;
}
.shell--narrow{max-width:860px;}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:var(--gold);
  color:#1d1d1d;
  padding:10px 18px;
  font-weight:700;
  z-index:50;
}
.skip-link:focus{left:0;}

/* ---------- typography ---------- */
h1{
  color:var(--green);
  font-size:clamp(1.65rem,3.3vw,2.35rem);
  line-height:1.25;
  margin:0 0 22px;
  font-weight:800;
  letter-spacing:-.2px;
}
h2{
  color:var(--ink);
  font-size:clamp(1.3rem,2.6vw,1.75rem);
  line-height:1.3;
  margin:0 0 16px;
  font-weight:700;
}
h3{
  color:var(--ink);
  font-size:1.12rem;
  margin:30px 0 8px;
  font-weight:700;
}
p{margin:0 0 18px;}
strong,b{color:var(--ink);font-weight:700;}
em{color:inherit;}

/* ---------- green section bands ---------- */
.band{
  background:var(--green);
  color:#fff;
  text-align:center;
  padding:20px 20px;
}
.band h2{
  margin:0;
  color:#fff;
  font-size:clamp(1.15rem,2.4vw,1.6rem);
  font-weight:700;
  letter-spacing:.2px;
  line-height:1.35;
}
.band--deep{background:var(--green-deep);}

.section{padding:52px 0;}
.section--tight{padding:34px 0;}
.section--tint{background:var(--tint);}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  text-align:center;
  border:0;
  cursor:pointer;
  line-height:1.3;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.04);}
.btn:active{transform:translateY(0);}

.btn--gold{
  background:var(--gold);
  color:#1d1d1d;
  padding:14px 32px;
  border-radius:999px;
  box-shadow:0 4px 0 var(--gold-dark);
}
.btn--gold:hover{box-shadow:0 6px 0 var(--gold-dark);}

.btn--green{
  background:var(--green);
  color:#fff;
  padding:14px 30px;
  border-radius:var(--radius);
  box-shadow:0 4px 0 var(--green-deep);
}
.btn--green:hover{box-shadow:0 6px 0 var(--green-deep);}

.btn--lg{font-size:1.12rem;padding:17px 42px;}
.btn--block{display:block;width:100%;}

/* ---------- top announcement ---------- */
.topbar{
  background:var(--green);
  color:#fff;
  text-align:center;
  font-weight:700;
  padding:13px 20px;
  font-size:clamp(.95rem,2vw,1.15rem);
}

/* ---------- generic grids ---------- */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}
.grid-2--top{align-items:start;}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

/* ---------- hero ---------- */
.hero-media img{margin-inline:auto;}
.hero-badges{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid var(--line);
}
.hero-badges img{margin-inline:auto;}

.microcopy{
  font-size:.95rem;
  color:var(--green-dark);
  font-weight:700;
  margin:18px 0;
}
.stars{
  color:#f0b429;
  letter-spacing:2px;
  font-size:1rem;
}
.rating-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
  font-size:.93rem;
  color:var(--muted);
}

/* ---------- featured testimonial ---------- */
.feature-quote{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:40px;
  align-items:start;
}
.avatar{
  width:100%;
  max-width:230px;
  border-radius:14px;
  box-shadow:var(--shadow);
}
.quote-head{
  color:var(--green);
  font-size:clamp(1.2rem,2.4vw,1.55rem);
  font-weight:700;
  margin:0 0 18px;
  line-height:1.4;
}
.attrib{
  font-weight:700;
  color:var(--ink);
  margin:20px 0 22px;
}

/* ---------- lists ---------- */
ul.ticks{
  margin:22px 0;
  padding:0;
  list-style:none;
}
ul.ticks li{
  position:relative;
  margin-bottom:14px;
  padding-left:30px;
}
ul.ticks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--green);
  font-weight:800;
}

.benefit-list{
  list-style:none;
  margin:28px 0;
  padding:0;
}
.benefit-list > li{
  margin-bottom:22px;
  padding-left:26px;
  position:relative;
}
.benefit-list > li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--green);
}
.benefit-list b{
  display:block;
  color:var(--ink);
  margin-bottom:2px;
}

.text-right{text-align:right;}

/* ---------- "what makes it different" ---------- */
.diff h3{
  color:var(--green-dark);
  margin-top:32px;
  font-size:1.15rem;
}
.diff h3 + p{margin-top:0;}

/* ---------- review cards ---------- */
.review{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:var(--shadow);
}
.review img{
  width:88px;
  height:88px;
  border-radius:12px;
  margin-bottom:14px;
}
.review h3{
  margin:0 0 4px;
  color:var(--ink);
  font-size:1.02rem;
}
.review .verified{
  font-size:.83rem;
  color:var(--green);
  font-weight:700;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.review p{
  font-size:.96rem;
  margin:0;
}

/* ---------- pricing ---------- */
.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  align-items:stretch;
}
.price-card{
  position:relative;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 24px 32px;
  text-align:center;
  display:flex;
  flex-direction:column;
  background:#fff;
  box-shadow:var(--shadow);
}
.price-card--featured{
  border:2px solid var(--green);
  box-shadow:0 16px 38px rgba(18,121,79,.18);
}
.price-card .ribbon{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:var(--gold);
  color:#1d1d1d;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  padding:6px 18px;
  border-radius:999px;
  white-space:nowrap;
}
.price-card .qty{
  color:var(--green);
  font-weight:800;
  letter-spacing:1.6px;
  font-size:1.02rem;
  text-transform:uppercase;
}
.price-card .supply{
  font-weight:700;
  color:var(--ink);
  margin-top:8px;
}
.price-card .pack{
  margin:22px auto;
  flex:1;
  display:grid;
  place-items:center;
  width:100%;
  min-height:170px;
}
.price-card .pack img{max-height:190px;width:auto;}
.price-card .amount{
  font-size:2.3rem;
  font-weight:800;
  color:var(--green);
  line-height:1;
}
.price-card .per{
  font-size:.95rem;
  color:var(--muted);
  font-weight:700;
}
.price-card .btn{margin:18px 0 14px;}
.price-card .total{
  font-size:.92rem;
  color:var(--ink);
}
.price-card .total b{color:var(--green-dark);}
.price-note{
  text-align:center;
  font-size:.9rem;
  color:var(--muted);
  margin:30px 0 0;
}

/* ---------- bonuses ---------- */
.bonus-wrap{background:var(--sage);padding-bottom:58px;}
.bonus-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  padding-top:46px;
  align-items:start;
}
.bonus-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}
.bonus-card img{width:100%;}
.bonus-card .bonus-body{padding:24px 26px 28px;}
.bonus-card h3{margin:0 0 10px;color:var(--ink);font-size:1.06rem;}
.bonus-card .rrp{
  font-weight:700;
  color:var(--muted);
  margin:0;
  text-decoration:line-through;
}
.bonus-card .free{font-weight:800;color:var(--green);margin:0 0 14px;}
.bonus-card p:last-child{margin-bottom:0;font-size:.96rem;}

/* ---------- FAQ ---------- */
.faq{
  margin:0;
  border-top:1px solid var(--line);
}
.faq dt{
  font-weight:700;
  color:var(--ink);
  margin-top:24px;
  font-size:1.04rem;
}
.faq dd{
  margin:6px 0 24px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
  font-size:.98rem;
}

/* ---------- guarantee ---------- */
.guarantee{
  background:var(--sage);
  color:#fff;
  padding:58px 0;
}
.guarantee .seal{width:100%;max-width:340px;margin-inline:auto;}
.guarantee h2{
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(1.35rem,2.8vw,1.9rem);
  line-height:1.3;
}
.guarantee p{color:#f6faf7;}
.guarantee strong{color:#fff;}

/* ---------- final offer ---------- */
.final-offer{padding:50px 0;}
.final-grid{
  display:grid;
  grid-template-columns:1fr 1.5fr 1fr;
  gap:32px;
  align-items:center;
}
.final-copy{text-align:center;}
.final-copy .was{
  text-decoration:line-through;
  color:var(--muted);
  font-size:1.25rem;
  margin-right:12px;
  font-weight:700;
}
.final-copy .now{
  font-size:clamp(2.6rem,6vw,3.4rem);
  font-weight:800;
  color:var(--ink);
  line-height:1;
}
.final-copy .unit{color:var(--muted);font-size:1rem;margin-left:6px;}
.final-copy .terms{
  font-size:.9rem;
  color:var(--muted);
  margin:16px 0 0;
}

/* ---------- article ---------- */
.article p{font-size:1rem;}

/* ---------- references ---------- */
.ref-logos{
  width:100%;
  max-width:720px;
  margin:0 auto 10px;
}
.refs{
  columns:2;
  column-gap:56px;
  counter-reset:ref;
  list-style:none;
  margin:34px 0 0;
  padding:0;
  font-size:.88rem;
}
.refs li{
  break-inside:avoid;
  margin-bottom:18px;
  padding-left:28px;
  position:relative;
  line-height:1.55;
}
.refs li::before{
  counter-increment:ref;
  content:counter(ref) ".";
  position:absolute;
  left:0;
  color:var(--muted);
  font-weight:700;
}
.refs b{display:block;color:var(--ink);}
.refs span{display:block;color:var(--muted);}
.refs a{
  word-break:break-word;
  color:var(--link);
  text-decoration:none;
  font-size:.83rem;
}
.refs a:hover{text-decoration:underline;}

/* ---------- legal ---------- */
.legal{
  padding:48px 0 24px;
  text-align:center;
  font-size:.88rem;
  color:var(--muted);
  line-height:1.75;
  background:var(--tint);
}
.legal h3{
  color:var(--ink);
  font-size:1.22rem;
  margin:34px 0 10px;
  text-align:center;
}
.legal .notice{max-width:920px;margin-inline:auto;}

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:30px 0 44px;
  text-align:center;
  font-size:.88rem;
  color:var(--muted);
}
footer nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 26px;
  margin-bottom:22px;
}
footer nav a{
  color:var(--link);
  text-decoration:none;
}
footer nav a:hover{text-decoration:underline;}
.social{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:16px;
}
.social a{
  width:30px;
  height:30px;
  background:var(--ink);
  color:#fff;
  border-radius:6px;
  display:grid;
  place-items:center;
  font-size:.78rem;
  font-weight:700;
  text-decoration:none;
}
.social a:hover{background:var(--green);}

/* ---------- secondary (legal / info) pages ---------- */
.page-head{
  background:var(--green);
  color:#fff;
  padding:38px 20px;
  text-align:center;
}
.page-head h1{color:#fff;margin:0 0 6px;}
.page-head p{margin:0;color:#e4f1ea;font-size:.95rem;}

.page-body{padding:48px 0 60px;}
.page-body h2{margin-top:36px;}
.page-body h2:first-of-type{margin-top:0;}
.page-body ul{padding-left:22px;margin:0 0 18px;}
.page-body li{margin-bottom:10px;}
.page-body .back{
  display:inline-block;
  margin-top:34px;
  font-weight:700;
  text-decoration:none;
}
.callout{
  background:var(--tint);
  border-left:4px solid var(--green);
  border-radius:0 var(--radius) var(--radius) 0;
  padding:18px 22px;
  margin:0 0 24px;
}
.callout p:last-child{margin-bottom:0;}
.contact-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
}
.contact-list li{
  padding:12px 0;
  border-bottom:1px solid var(--line);
}

/* ---------- responsive ---------- */
@media (max-width:980px){
  .grid-2,.grid-3,.pricing,.bonus-grid,.final-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .feature-quote{grid-template-columns:1fr;gap:24px;}
  .avatar{max-width:190px;}
  .refs{columns:1;}
  .section{padding:40px 0;}
  .final-grid .final-media{max-width:360px;margin-inline:auto;}
  .text-right{text-align:left;}
}

@media (max-width:560px){
  body{font-size:16px;}
  .btn{width:100%;}
  .btn--lg{padding:16px 24px;}
  .shell{padding-inline:16px;}
  .price-card .pack img{max-height:150px;}
  .bonus-card .bonus-body{padding:20px;}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .btn,.btn:hover{transition:none;transform:none;}
}

/* ---------- print ---------- */
@media print{
  .topbar,.btn,.social,footer nav{display:none !important;}
  body{font-size:12pt;color:#000;}
}
