
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.trim-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 54px 24px 38px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.trim-hero__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.trim-badge {
  display: inline-flex;
  align-items: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.trim-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -1.8px;
  color: #151515;
  margin: 0 0 18px;
  font-weight: 900;
  max-width: 700px;
}

.trim-green-highlight {
  color: #007e41;
  display: block;
}

.trim-subtitle {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
  color: #303030;
  margin: 0 0 20px;
  max-width: 640px;
  font-weight: 500;
}

.trim-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 2px solid #e6e6e6;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  width: fit-content;
}

.trim-sale-badge {
  background: #ef2f2f;
  color: white;
  font-size: 20px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1;
}

.trim-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trim-old-price {
  font-size: 28px;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
}

.trim-new-price {
  font-size: 48px;
  font-weight: 900;
  color: #007e41;
  line-height: 1;
}

.trim-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.trim-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #202020;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.trim-benefits li span {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trim-benefits strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
}

.trim-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  background: #007e41;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  padding: 18px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0,126,65,0.28);
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
}

.trim-cta:hover {
  transform: translateY(-2px);
}

.trim-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 700;
}

.trim-hero__image {
  position: relative;
  text-align: center;
}

.trim-hero__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 900px) {
  .trim-hero {
    padding: 22px 16px 30px;
  }

  .trim-hero__wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .trim-badge,
  .trim-hero h1,
  .trim-subtitle {
    text-align: center;
    justify-content: center;
  }

  .trim-hero h1 {
    font-size: 34px;
  }

  .trim-subtitle {
    font-size: 17px;
  }

  .trim-price-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .trim-cta {
    width: 100%;
  }

  .trim-trust {
    justify-content: center;
    text-align: center;
  }
}

/* ===== price badge importato da wall-conv-5-it (palette 9999X) ===== */
.c4x-price-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, #fff4f2, #ffffff);
  border: 2px solid #ef2f2f;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(239,47,47,0.18);
  width: fit-content;
}
.c4x-price-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c4x-sale-badge {
  background: #ef2f2f;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(239,47,47,0.4);
  animation: c4x-badge-pulse 1.8s infinite;
}
@keyframes c4x-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.c4x-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.c4x-old-price {
  font-size: 28px;
  font-weight: 700;
  color: #999999;
  text-decoration: line-through;
  white-space: nowrap;
  line-height: 1;
}
.c4x-new-price {
  font-size: 48px;
  font-weight: 900;
  color: #007e41;
  line-height: 1;
  white-space: nowrap;
}
.c4x-stock-bar {
  width: 100%;
  height: 10px;
  background: #f4d9d3;
  border-radius: 999px;
  overflow: hidden;
}
.c4x-stock-bar-fill {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #ff5a4d, #ef2f2f);
  border-radius: 999px;
}
.c4x-stock-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #B42318;
}
.c4x-stock-text strong {
  color: #ef2f2f;
  font-weight: 900;
}
@media (max-width: 900px) {
  .c4x-price-box {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 12px;
    gap: 12px;
    box-sizing: border-box;
  }
  .c4x-price-top {
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px 12px;
    flex-wrap: wrap;
  }
  .c4x-sale-badge {
    font-size: 16px;
    padding: 8px 10px;
    flex-shrink: 0;
  }
  .c4x-price-row {
    gap: 8px;
  }
  .c4x-new-price {
    font-size: clamp(26px, 8vw, 40px);
  }
  .c4x-old-price {
    font-size: clamp(15px, 4.2vw, 22px);
  }
  .c4x-stock-text {
    text-align: center;
  }
}



/* ====================== TRUST BOX ====================== */
.c4x-trust-box{
  max-width:920px;
  margin:24px auto 0;
  padding:30px 22px;
  background:#ffffff;
  border-radius:20px;
  box-shadow:0 10px 28px rgba(0,0,0,0.06);
  border:1px solid #f0f0f0;
  text-align:center;
  font-family:Arial, sans-serif;
  box-sizing:border-box;
}

.c4x-trust-header{
  font-size:18px;
  font-weight:900;
  color:#151515;
  margin-bottom:24px;
  letter-spacing:0.4px;
}

.c4x-trust-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:16px;
}

.c4x-trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  background:#fafafa;
  border-radius:14px;
  text-align:left;
  transition:all 0.25s ease;
  border:1px solid #f2f2f2;
}

.c4x-trust-item:hover{
  background:#ffffff;
  box-shadow:0 8px 20px rgba(0,126,65,0.08);
  border-color:#b7e3c6;
}

.c4x-trust-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:50%;
  background:#007e41;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:23px;
  box-shadow:0 5px 12px rgba(0,126,65,0.18);
}

.c4x-trust-text{
  font-size:15px;
  line-height:1.45;
  color:#333333;
}

.c4x-trust-text strong{
  color:#151515;
  font-size:16px;
}

/* ====================== STOCK / SCARCITY ====================== */
.c4x-order-stock-section{
  max-width:920px;
  margin:24px auto 0;
  padding:0 22px;
  font-family:Arial, sans-serif;
  box-sizing:border-box;
}

.c4x-stock-title{
  font-size:18px;
  font-weight:800;
  color:#151515;
  margin-bottom:12px;
}

.c4x-stock-bar-bg{
  position:relative;
  width:100%;
  height:36px;
  background:#e9edf2;
  border-radius:10px;
  overflow:hidden;
}

.c4x-stock-bar-fill{
  height:100%;
  background:linear-gradient(90deg,#ff5a4d,#ef2f2f);
}

.c4x-stock-bar-label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  padding:0 14px;
  font-size:13px;
  font-weight:900;
  color:#fff;
}

.c4x-warning-box{
  border:2px dashed #ef2f2f;
  border-radius:18px;
  padding:22px;
  text-align:center;
  margin:18px 0;
}

.c4x-warning-title{
  font-size:24px;
  font-weight:900;
  color:#ef2f2f;
}

.c4x-warning-subtitle{
  font-size:20px;
  font-style:italic;
  color:#ef2f2f;
  margin:10px 0;
}

.c4x-warning-text{
  font-size:18px;
  color:#d52f24;
}

@media(max-width:768px){
  .c4x-trust-box{
    padding:24px 14px;
    border-radius:16px;
  }

  .c4x-trust-header{
    font-size:15px;
    margin-bottom:18px;
    line-height:1.4;
  }

  .c4x-trust-list{
    grid-template-columns:1fr;
    gap:12px;
  }

  .c4x-trust-item{
    padding:14px;
    gap:12px;
  }

  .c4x-trust-icon{
    width:44px;
    height:44px;
    min-width:44px;
    font-size:20px;
  }

  .c4x-trust-text{
    font-size:14px;
  }

  .c4x-trust-text strong{
    font-size:15px;
  }

  .c4x-warning-title{
    font-size:20px;
  }

  .c4x-warning-subtitle{
    font-size:17px;
  }

  .c4x-warning-text{
    font-size:15px;
  }
}



.problem-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
  padding: 72px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.problem-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.problem-image {
  position: relative;
}

.problem-image::before {
  content: "";
  position: absolute;
  width: 82%;
  height: 82%;
  left: 9%;
  top: 9%;
  background: radial-gradient(circle, rgba(239,47,47,0.14), rgba(239,47,47,0) 70%);
  z-index: 0;
}

.problem-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 22px 42px rgba(0,0,0,0.14);
}

.problem-content {
  max-width: 620px;
}

.problem-label {
  display: inline-flex;
  align-items: center;
  background: #fff1f1;
  color: #b42318;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.problem-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 22px;
  font-weight: 900;
}

.problem-content p {
  font-size: 18px;
  line-height: 1.58;
  color: #303030;
  margin: 0 0 18px;
  font-weight: 500;
}

.problem-loop {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff7e8;
  border: 1px solid #ffd89a;
  color: #4a2d00;
  padding: 15px 16px;
  border-radius: 16px;
  margin: 22px 0;
  font-size: 18px;
  line-height: 1.35;
}

.problem-loop span {
  font-size: 28px;
  flex-shrink: 0;
}

.problem-loop strong {
  font-weight: 900;
}

.problem-truth {
  display: flex;
  gap: 14px;
  background: #151515;
  color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  margin-top: 24px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.problem-truth span {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-truth p {
  color: #ffffff;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.problem-truth strong {
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 900px) {
  .problem-section {
    padding: 46px 16px;
  }

  .problem-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .problem-image {
    order: 2;
    width: 100%;
  }

  .problem-content {
    order: 1;
    max-width: 100%;
    text-align: left;
  }

  .problem-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .problem-content h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .problem-content p {
    font-size: 16.5px;
    line-height: 1.55;
  }

  .problem-loop {
    font-size: 16px;
    padding: 14px;
    margin: 20px 0;
  }

  .problem-truth {
    padding: 17px;
    border-radius: 16px;
  }

  .problem-truth p {
    font-size: 16px;
  }
}



.t77bx-sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(150deg, #0c120e 0%, #111c14 55%, #0a130d 100%);
  padding: 78px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.t77bx-sec::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,170,85,0.20), rgba(0,170,85,0) 70%);
  pointer-events: none;
}

.t77bx-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.t77bx-media { position: relative; }

.t77bx-frame {
  position: relative;
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(140deg, rgba(125,240,168,0.55), rgba(0,126,65,0.14) 55%, rgba(255,255,255,0.05));
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.t77bx-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
}

.t77bx-chip {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #0b1410;
  color: #7df0a8;
  border: 1px solid rgba(125,240,168,0.42);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}

.t77bx-body { max-width: 600px; }

.t77bx-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7df0a8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.t77bx-eyebrow span {
  width: 28px;
  height: 2px;
  background: #7df0a8;
  display: inline-block;
}

.t77bx-body h2 {
  font-size: clamp(32px, 3.7vw, 52px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color: #ffffff;
  margin: 0 0 18px;
  font-weight: 900;
}

.t77bx-lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: #c9d2cb;
  margin: 0 0 24px;
  font-weight: 500;
}

.t77bx-cards {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
}

.t77bx-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 4px solid #2f8f57;
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
}

.t77bx-card--key {
  border-left-color: #7df0a8;
  background: rgba(0,170,85,0.12);
}

.t77bx-ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125,240,168,0.14);
  font-size: 20px;
}

.t77bx-txt {
  color: #e4e9e4;
  font-size: 16px;
  line-height: 1.5;
}

.t77bx-txt strong {
  display: block;
  color: #7df0a8;
  font-weight: 900;
  margin-bottom: 4px;
  font-size: 16.5px;
}

.t77bx-note {
  font-size: 15.5px;
  line-height: 1.6;
  color: #9fb0a4;
  margin: 0 0 24px;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid rgba(125,240,168,0.3);
}

.t77bx-final {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 20px;
  font-weight: 800;
  color: #c9d2cb;
}

.t77bx-final b { color: #7df0a8; }

@media (max-width: 900px) {
  .t77bx-sec { padding: 48px 16px; }

  .t77bx-wrap {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .t77bx-media { order: 2; width: 100%; }
  .t77bx-body { order: 1; max-width: 100%; }

  .t77bx-body h2 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .t77bx-lead { font-size: 16px; }

  .t77bx-chip { top: 16px; left: 16px; font-size: 12px; }
}



.t77bn-sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #eef4ea 100%);
  padding: 78px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.t77bn-wrap { max-width: 1120px; margin: 0 auto; }

.t77bn-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.t77bn-label {
  display: inline-flex;
  align-items: center;
  background: #e2f3e8;
  color: #146b32;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.t77bn-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #14201a;
  margin: 0 0 16px;
  font-weight: 900;
}

.t77bn-head p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.t77bn-rows {
  display: grid;
  gap: 34px;
}

.t77bn-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e4ece2;
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(20,60,35,0.07);
}

.t77bn-row--rev .t77bn-media { order: 2; }

.t77bn-media { position: relative; }

.t77bn-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(20,60,35,0.16);
}

.t77bn-media::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2px solid rgba(0,126,65,0.14);
  pointer-events: none;
}

.t77bn-c { padding: 8px 14px; }

.t77bn-ic {
  width: 52px;
  height: 52px;
  background: #e2f3e8;
  color: #007e41;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.t77bn-c h3 {
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: #14201a;
  margin: 0 0 14px;
  font-weight: 900;
}

.t77bn-c p {
  font-size: 16.5px;
  line-height: 1.58;
  color: #3a4640;
  margin: 0 0 15px;
  font-weight: 500;
}

.t77bn-hl {
  background: #eaf7ee;
  border-left: 4px solid #007e41;
  color: #0d3b21;
  font-size: 16.5px;
  line-height: 1.4;
  font-weight: 900;
  padding: 14px 16px;
  border-radius: 0 14px 14px 0;
  margin: 4px 0 15px;
}

.t77bn-cta-wrap { margin-top: 44px; text-align: center; }

.t77bn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007e41;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  padding: 20px 34px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0,126,65,0.28);
  transition: all 0.2s ease;
  line-height: 1;
}

.t77bn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0,126,65,0.36);
}

.t77bn-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.t77bn-trust span {
  background: #ffffff;
  border: 1px solid #dde7da;
  color: #303030;
  font-size: 15px;
  font-weight: 800;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(20,60,35,0.05);
}

@media (max-width: 900px) {
  .t77bn-sec { padding: 48px 16px; }

  .t77bn-head { margin-bottom: 30px; }

  .t77bn-label { font-size: 13px; padding: 8px 12px; }

  .t77bn-head h2 { font-size: 32px; line-height: 1.05; }

  .t77bn-head p { font-size: 16.5px; }

  .t77bn-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px;
    border-radius: 20px;
  }

  .t77bn-row--rev .t77bn-media { order: 0; }

  .t77bn-c { padding: 4px 6px 8px; }

  .t77bn-ic { width: 46px; height: 46px; font-size: 25px; }

  .t77bn-c h3 { font-size: 23px; }

  .t77bn-c p, .t77bn-hl { font-size: 15.5px; }

  .t77bn-cta { width: 100%; font-size: 18px; padding: 18px; }

  .t77bn-trust span { font-size: 13.5px; padding: 10px 12px; }
}



.reviews-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.reviews-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 44px;
}

.reviews-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff7e8;
  color: #8a4b00;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.reviews-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.reviews-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.review-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  border: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
}

.review-image {
  width: 100%;
  background: #f2f2f2;
}

.review-image img {
  width: 100%;
  height: auto;
  display: block;
}

.review-content {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 900;
}

.review-content h3 {
  font-size: 22px;
  line-height: 1.15;
  color: #151515;
  margin: 0 0 12px;
  font-weight: 900;
}

.review-content p {
  font-size: 15.8px;
  line-height: 1.55;
  color: #303030;
  margin: 0 0 18px;
  font-weight: 500;
}

.review-badge {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  background: #e9f7ed;
  color: #146b32;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .reviews-section {
    padding: 48px 16px;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .reviews-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .reviews-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .reviews-header p {
    font-size: 16.5px;
  }

  .review-card {
    border-radius: 20px;
  }

  .review-content {
    padding: 22px 18px 24px;
  }

  .review-content h3 {
    font-size: 21px;
  }

  .review-content p {
    font-size: 15.5px;
  }
}



.kit-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f5 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.kit-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.kit-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.kit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.kit-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.kit-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.kit-photo {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #eeeeee;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.kit-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.kit-table {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  border: 2px solid #eeeeee;
}

.kit-table-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: #007e41;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.kit-table-header div {
  padding: 20px 24px;
}

.kit-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-top: 1px solid #ececec;
}

.kit-row:nth-child(even) {
  background: #fafafa;
}

.kit-component,
.kit-benefit {
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.45;
}

.kit-component {
  font-weight: 800;
  color: #151515;
  border-right: 1px solid #ececec;
}

.kit-benefit {
  font-weight: 500;
  color: #303030;
}

@media (max-width: 900px) {
  .kit-section {
    padding: 48px 16px;
  }

  .kit-header {
    margin-bottom: 28px;
  }

  .kit-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .kit-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .kit-header p {
    font-size: 16.5px;
  }

  .kit-photo {
    margin-bottom: 24px;
    border-radius: 20px;
  }

  .kit-table {
    border-radius: 20px;
  }

  .kit-table-header {
    display: none;
  }

  .kit-row {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .kit-component {
    border-right: none;
    border-bottom: 1px solid #ececec;
    padding: 18px 18px 14px;
    font-size: 15.5px;
  }

  .kit-benefit {
    padding: 14px 18px 18px;
    font-size: 15px;
  }
}



.faq-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
  padding: 76px 24px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f7ed;
  color: #146b32;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.faq-header h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: #151515;
  margin: 0 0 16px;
  font-weight: 900;
}

.faq-header p {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 2px solid #eeeeee;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.055);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.faq-item summary span {
  font-size: 18px;
  line-height: 1.35;
  color: #151515;
  font-weight: 900;
}

.faq-item summary strong {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #e9f7ed;
  color: #007e41;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.faq-item[open] summary strong {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #303030;
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 500;
}

.faq-trust-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.faq-trust-box div {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  color: #303030;
  font-size: 15px;
  font-weight: 800;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .faq-section {
    padding: 48px 16px;
  }

  .faq-header {
    margin-bottom: 28px;
  }

  .faq-label {
    font-size: 13px;
    padding: 8px 12px;
    margin-bottom: 16px;
  }

  .faq-header h2 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .faq-header p {
    font-size: 16.5px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 19px 18px;
  }

  .faq-item summary span {
    font-size: 16.5px;
  }

  .faq-item summary strong {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 18px 20px;
    font-size: 15.5px;
  }

  .faq-trust-box {
    gap: 10px;
    margin-top: 24px;
  }

  .faq-trust-box div {
    font-size: 13.5px;
    padding: 10px 12px;
  }
}


/* gadgetspothub extras: images, order form, footer */
img { max-width: 100%; height: auto; display: block; }
#FORM, #modulo-ordine { scroll-margin-top: 16px; }

.t77-order {
  max-width: 920px;
  margin: 8px auto 28px;
  padding: 0 22px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.t77-order-card {
  background: #fff;
  border: 1px solid #e6ece8;
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 12px 28px rgba(0,126,65,0.08);
}
.t77-order-card h2,
.t77-order-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color: #151515;
  letter-spacing: -0.4px;
}
.t77-order-card > p {
  margin: 0 0 18px;
  color: #4a5560;
  font-size: 15px;
  line-height: 1.45;
}
.tm-order-form { text-align: left; margin-top: 4px; }
.tm-order-form br { display: none; }
.tm-order-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #151515;
}
.tm-order-form input[type="text"],
.tm-order-form input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid #d5e0d8;
  border-radius: 12px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background: #fff;
}
.tm-order-form input:focus {
  outline: none;
  border-color: #007e41;
  box-shadow: 0 0 0 3px rgba(0,126,65,.18);
}
.tm-order-form button[type="submit"] {
  display: block;
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: #007e41;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,126,65,.28);
}
.tm-order-form button[type="submit"]:hover { transform: translateY(-1px); }
.form-note {
  font-size: 13px;
  color: #4a5560;
  text-align: center;
  margin-top: 12px;
}

.site-footer { background:#0f172a; color:#cbd5e1; padding:2.5rem 0 1.5rem; font-size:.875rem; margin-top: 24px; font-family: Arial, sans-serif; }
.site-footer .container { width: min(100% - 2rem, 1100px); margin-inline: auto; }
.site-footer .site-logo { display:inline-flex; align-items:center; text-decoration:none; }
.site-footer .site-logo:hover { opacity:.85; }
.site-footer .site-logo__text { font-weight:900; font-size:1.5rem; letter-spacing:-.04em; text-transform:lowercase; line-height:1; }
.site-footer .site-logo__text-primary { color:#fff; }
.site-footer .site-logo__text-accent { background:linear-gradient(135deg,#fdba74 0%,#f97316 100%); -webkit-background-clip:text; background-clip:text; color:transparent; -webkit-text-fill-color:transparent; }
.site-footer__grid { display:grid; gap:2rem; grid-template-columns:1fr; margin-bottom:2rem; }
@media (min-width:768px) { .site-footer__grid { grid-template-columns:1.2fr 1fr 1fr; } }
.site-footer__heading { font-weight:700; color:#fff; margin-bottom:.75rem; font-size:1rem; }
.site-footer__list { list-style:none; display:flex; flex-direction:column; gap:.5rem; margin:0; padding:0; }
.site-footer__list a { color:#cbd5e1; text-decoration:none; }
.site-footer__list a:hover { color:#fff; }
.site-footer__blurb { margin-top:1rem; max-width:340px; color:#94a3b8; line-height:1.5; }
.site-footer__bottom { border-top:1px solid #334155; padding-top:1rem; text-align:center; font-size:.75rem; color:#94a3b8; }
.site-footer__bottom strong { color:#cbd5e1; }
.site-footer__bottom a { color:#cbd5e1; text-decoration:none; font-weight:700; }
.site-footer__bottom a:hover { color:#fff; text-decoration:underline; }
