.gsx-annbar{width:100%;margin:0;background:#000000;color:#ffffff;
font-family:Arial,Helvetica,sans-serif;font-weight:800;font-size:15px;letter-spacing:.05em;
text-transform:uppercase;text-align:center;padding:11px 16px;line-height:1.3;
box-sizing:border-box;position:relative;z-index:5}
@media (max-width:600px){.gsx-annbar{font-size:13px;padding:10px 10px;letter-spacing:.03em}}

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

.c4x-hero {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: #ffffff;
  padding: 54px 24px 38px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

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

.c4x-badge {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: #E3F7FC;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.c4x-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  color: #0A1A2A;
  margin: 0 0 18px;
  font-weight: 900;
  max-width: 700px;
}

.c4x-blue-highlight {
  color: #0B5FA5;
  display: block;
}

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

.c4x-price-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, #fff4f2, #ffffff);
  border: 2px solid #FF4A1E;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(255,74,30,0.18);
  width: fit-content;
}

.c4x-price-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c4x-sale-badge {
  background: #FF4A1E;
  color: white;
  font-size: 20px;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(255,74,30,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;
}

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

.c4x-new-price {
  font-size: 48px;
  font-weight: 900;
  color: #0B5FA5;
  line-height: 1;
}

.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, #FF4A1E);
  border-radius: 999px;
}

.c4x-stock-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #B42318;
}

.c4x-stock-text strong {
  color: #FF4A1E;
  font-weight: 900;
}

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

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

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

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

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

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

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

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

.c4x-hero__image img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 34px rgba(11, 95, 165, 0.22));
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

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

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

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

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

  .c4x-hero h1 {
    font-size: 32px;
  }

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

  .c4x-price-box {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .c4x-price-top {
    justify-content: center;
    width: 100%;
  }

  .c4x-stock-text {
    text-align: center;
  }

  .c4x-cta {
    width: 100%;
  }

  .c4x-trust {
    justify-content: center;
    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, Helvetica, sans-serif;
  box-sizing:border-box;
}

.c4x-trust-header{
  font-size:18px;
  font-weight:900;
  color:#0A1A2A;
  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(255,107,0,0.08);
  border-color:#ffd5b5;
}

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

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

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

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

.c4x-stock-title{
  font-size:18px;
  font-weight:800;
  color:#0A1A2A;
  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,#ff3b30);
}

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

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

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

.c4x-warning-subtitle{
  font-size:20px;
  font-style:italic;
  color:#ff3b30;
  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;
  }
}

.fzb-sec{width:100%;max-width:100%;margin-left:0;margin-right:0;background:#f4f7fa;padding:74px 24px;font-family: Arial, Helvetica, sans-serif;box-sizing:border-box;overflow:hidden}
.fzb-wrap{max-width:1120px;margin:0 auto}
.fzb-head{max-width:900px;margin:0 auto 46px;text-align:center}
.fzb-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:13px;font-weight:900;letter-spacing:.16em;text-transform:uppercase;color:#0B5FA5;margin-bottom:14px}
.fzb-eyebrow i{width:26px;height:2px;background:#0B5FA5;display:inline-block}
.fzb-head h2{font-size:clamp(27px,3.4vw,42px);line-height:1.14;letter-spacing:-1px;color:#0A1A2A;margin:0;font-weight:900}
.fzb-rows{display:grid;gap:22px}
.fzb-row{display:grid;grid-template-columns:0.78fr 1.22fr;gap:34px;align-items:center;background:#fff;border:1px solid #e4ebf1;border-radius:20px;padding:20px;box-shadow:0 14px 34px rgba(10,26,42,.07)}
.fzb-row--rev .fzb-media{order:2}
.fzb-media{position:relative}
.fzb-media img{width:100%;height:auto;display:block;border-radius:14px}

.fzb-body h3{font-size:clamp(20px,2.2vw,27px);line-height:1.16;letter-spacing:-.4px;color:#0A1A2A;margin:0 0 12px;font-weight:900}
.fzb-lead{font-size:16px;line-height:1.6;color:#41505c;margin:0 0 16px;font-weight:500}
.fzb-facts{display:flex;gap:12px;align-items:flex-start;background:#eef4f9;border-radius:12px;padding:13px 15px;margin-bottom:12px}
.fzb-ico{font-size:20px;line-height:1.3;flex:0 0 auto}
.fzb-facts p,.fzb-mean p{margin:0;font-size:15.5px;line-height:1.55;color:#22323e;font-weight:500}
.fzb-facts b{color:#0B5FA5;font-weight:900}
.fzb-mean{border-left:4px solid #1E9E5A;background:#f2faf5;border-radius:0 12px 12px 0;padding:13px 15px}
.fzb-mean b{color:#146b32;font-weight:900}
.fzb-cta-wrap{margin-top:36px;text-align:center}
.fzb-cta{display:inline-flex;align-items:center;justify-content:center;background:#247E41;color:#fff !important;text-decoration:none;font-size:19px;font-weight:900;padding:19px 32px;border-radius:14px;box-shadow:0 14px 30px rgba(36,126,65,.34);transition:all .2s ease;line-height:1}
.fzb-cta:hover{transform:translateY(-2px)}
.fzb-trust{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:16px}
.fzb-trust span{background:#fff;border:1px solid #e2e8ee;color:#303030;font-size:14px;font-weight:800;padding:10px 13px;border-radius:999px}
@media(max-width:900px){
 .fzb-sec{padding:48px 16px}
 .fzb-head{margin-bottom:26px}
 .fzb-head h2{font-size:25px}
 .fzb-row{display:flex;flex-direction:column;gap:16px;padding:14px;border-radius:16px}
 .fzb-row--rev .fzb-media{order:0}
 
 .fzb-body h3{font-size:21px}
 .fzb-lead,.fzb-facts p,.fzb-mean p{font-size:15px}
 .fzb-cta{width:100%;font-size:17px}
 .fzb-trust span{font-size:13px}
}

.c4x-cmp-section {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  padding: 12px 24px 76px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  overflow: hidden;
}

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

.c4x-cmp-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

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

.c4x-cmp-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #0A1A2A;
  margin: 0 0 16px;
  font-weight: 900;
}

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

.c4x-cmp-table {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  border: 2px solid #eeeeee;
  max-width: 880px;
  margin: 0 auto 14px;
}

.c4x-cmp-table-header {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  background: linear-gradient(135deg, #052240, #0B5FA5);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.c4x-cmp-table-header div {
  padding: 16px 16px;
  text-align: center;
}

.c4x-cmp-table-header div:first-child {
  text-align: left;
}

.c4x-cmp-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  border-top: 1px solid #ececec;
}

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

.c4x-cmp-comp,
.c4x-cmp-no,
.c4x-cmp-yes {
  padding: 15px 16px;
  font-size: 14.5px;
  line-height: 1.4;
  text-align: center;
}

.c4x-cmp-comp {
  font-weight: 800;
  color: #0A1A2A;
  text-align: left;
  border-right: 1px solid #ececec;
}

.c4x-cmp-no {
  font-weight: 700;
  color: #E23A3A;
  border-right: 1px solid #ececec;
}

.c4x-cmp-yes {
  font-weight: 700;
  color: #1E9E5A;
}

.c4x-cmp-cta-wrap {
  text-align: center;
}

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

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

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

  .c4x-cmp-header {
    margin-bottom: 28px;
  }

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

  .c4x-cmp-header h2 {
    font-size: 26px;
    line-height: 1.12;
  }

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

  .c4x-cmp-table {
    border-radius: 18px;
  }

  .c4x-cmp-table-header,
  .c4x-cmp-row {
    grid-template-columns: 0.9fr 1fr 1fr;
  }

  .c4x-cmp-table-header div,
  .c4x-cmp-comp,
  .c4x-cmp-no,
  .c4x-cmp-yes {
    padding: 10px 8px;
    font-size: 11.5px;
  }

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

.fzr-sec{width:100%;max-width:100%;margin-left:0;margin-right:0;background:linear-gradient(180deg,#ffffff 0%,#eef4f9 100%);padding:74px 24px;font-family: Arial, Helvetica, sans-serif;box-sizing:border-box;overflow:hidden}
.fzr-wrap{max-width:1180px;margin:0 auto}
.fzr-head{text-align:center;max-width:820px;margin:0 auto 42px}
.fzr-eyebrow{display:inline-flex;background:#fff5e6;color:#8a4b00;font-size:14px;font-weight:800;padding:8px 14px;border-radius:8px;margin-bottom:16px}
.fzr-head h2{font-size:clamp(28px,3.6vw,44px);line-height:1.1;letter-spacing:-1.1px;color:#0A1A2A;margin:0 0 12px;font-weight:900}
.fzr-head p{font-size:17px;color:#4a4a4a;margin:0;font-weight:600}
.fzr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.fzr-card{margin:0;background:#fff;border:1px solid #e4ebf1;border-radius:18px;padding:0 22px 22px;box-shadow:0 14px 32px rgba(10,26,42,.08);display:flex;flex-direction:column;overflow:hidden}
.fzr-photo{position:relative;margin:0 -22px 16px;border-radius:18px 18px 0 0;overflow:hidden;background:#eef2f6}
.fzr-photo img{width:100%;aspect-ratio:1/1;height:auto;object-fit:cover;display:block;border-radius:0}
.fzr-quote{position:absolute;right:14px;bottom:6px;font-size:74px;line-height:1;color:#fff;opacity:.85;font-family:Georgia,serif;text-shadow:0 3px 12px rgba(10,26,42,.45)}
.fzr-card blockquote{margin:0 0 16px;font-size:15.6px;line-height:1.6;color:#33424e;font-weight:500;text-align:center}
.fzr-card figcaption{margin-top:auto;border-top:1px dashed #dde5ec;padding-top:14px;display:flex;flex-direction:column;gap:5px;text-align:center}
.fzr-name{font-size:16px;font-weight:900;color:#0A1A2A}
.fzr-name em{font-style:normal;font-weight:600;color:#6d7c88}
.fzr-meta{font-size:13.5px;font-weight:700;color:#5b6a76}
.fzr-stars{color:#ffb400;letter-spacing:1px}
.fzr-ok{color:#1E9E5A;font-weight:800}
@media(max-width:1024px){.fzr-grid{grid-template-columns:1fr;gap:20px}.fzr-card{margin:0;background:#fff;border:1px solid #e4ebf1;border-radius:18px;padding:0 22px 22px;box-shadow:0 14px 32px rgba(10,26,42,.08);display:flex;flex-direction:column;overflow:hidden}}
@media(max-width:900px){.fzr-sec{padding:48px 16px}.fzr-head{margin-bottom:26px}.fzr-head h2{font-size:26px}.fzr-head p{font-size:15.5px}.fzr-photo img{width:100%;aspect-ratio:1/1;height:auto;object-fit:cover;display:block;border-radius:0}.fzr-card blockquote{font-size:15px}}

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

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

.c4x-kit-image {
  position: relative;
}

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

.c4x-kit-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.c4x-kit-content {
  max-width: 620px;
}

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

.c4x-kit-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #0A1A2A;
  margin: 0 0 16px;
  font-weight: 900;
}

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

.c4x-kit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.c4x-kit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #0A1A2A;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

.c4x-kit-check {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1E9E5A;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

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

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

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

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

  .c4x-kit-image {
    order: 1;
    width: 100%;
  }

  .c4x-kit-content {
    order: 2;
    max-width: 100%;
  }

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

  .c4x-kit-content h2 {
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

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

  .c4x-kit-list li {
    font-size: 15.5px;
    padding: 12px 14px;
  }

  .c4x-kit-cta {
    width: 100%;
    font-size: 17px;
  }
}

/* ===== mobile: titoli sopra l'immagine, bullet sotto ===== */
@media (max-width: 900px) {
  .c4x-kit-wrap { gap: 0; align-items: stretch; }
  .c4x-kit-content { display: contents; }
  .c4x-kit-label { order: 1; align-self: flex-start; margin: 0 0 12px; }
  .c4x-kit-content h2 { order: 2; margin: 0 0 12px; }
  .c4x-kit-content p { order: 3; margin: 0 0 24px; }
  .c4x-kit-image { order: 4; width: 100%; margin: 0 0 26px; }
  .c4x-kit-list { order: 5; margin: 0 0 26px; }
  .c4x-kit-cta { order: 6; }
}

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

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

.c4x-faq-header {
  text-align: center;
  margin: 0 auto 40px;
}

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

.c4x-faq-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: #0A1A2A;
  margin: 0 0 16px;
  font-weight: 900;
}

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

.c4x-faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.c4x-faq-item {
  background: #ffffff;
  border: 1px solid #e6eef4;
  border-radius: 16px;
  padding: 4px 20px;
}

.c4x-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-size: 17.5px;
  font-weight: 700;
  color: #0A1A2A;
}

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

.c4x-faq-item summary strong {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  color: #0B5FA5;
  transition: transform 0.2s ease;
}

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

.c4x-faq-answer {
  font-size: 16px;
  line-height: 1.6;
  color: #3C4A58;
  font-weight: 500;
  padding: 0 0 20px;
}

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

.c4x-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) {
  .c4x-faq-section {
    padding: 48px 16px;
  }

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

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

  .c4x-faq-header h2 {
    font-size: 26px;
  }

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

  .c4x-faq-item summary {
    font-size: 16px;
    padding: 15px 0;
  }

  .c4x-faq-answer {
    font-size: 15px;
    padding-bottom: 16px;
  }
}
.c4x-price-box { align-items: center; }
.c4x-price-top { justify-content: center; width: 100%; }
.c4x-price-row { display:flex; align-items:baseline; justify-content:center; gap:10px; flex-wrap:nowrap; }
.c4x-new-price, .c4x-old-price { white-space: nowrap; }
.c4x-sale-badge { flex-shrink: 0; }
@media (max-width: 900px) {
  .c4x-price-box { width:100%; max-width:100%; box-sizing:border-box; padding:14px 14px; }
  .c4x-sale-badge { font-size:15px; padding:8px 10px; animation:none; }
  .c4x-new-price { font-size:30px; }
  .c4x-old-price { font-size:16px; }
}
html, body { overflow-x: hidden; }
body.freezepro { margin:0; padding:0; overflow-x:hidden; background:#fff; font-family:Arial, Helvetica, sans-serif; -webkit-text-size-adjust:100%; }
.ct-form-wrap { max-width: 540px; margin: 28px auto 40px; padding: 0 16px; box-sizing: border-box; }
.ct-form-card { background:#fff; border:1px solid #eef0f2; border-radius:20px; box-shadow:0 10px 28px rgba(0,0,0,.08); padding:26px 22px; box-sizing:border-box; }
.ct-form-card h3 { margin:0 0 12px; font-family:Arial, Helvetica, sans-serif; font-size:22px; font-weight:900; text-align:center; }
.tm-order-form label { display:block; font-family:Arial, Helvetica, sans-serif; font-size:14px; font-weight:700; margin:0 0 6px; }
.tm-order-form input[type="text"], .tm-order-form input[type="tel"] {
  width:100%; max-width:100%; padding:14px; margin-bottom:12px; border:1px solid #dce3e8; border-radius:12px; font-size:16px; font-family:Arial, Helvetica, sans-serif; box-sizing:border-box;
}
.tm-order-form br { display:none; }
.tm-order-form button {
  width:100%; min-height:56px; border:none; border-radius:12px; cursor:pointer;
  font-family:Arial, Helvetica, sans-serif; font-size:17px; font-weight:900; text-transform:uppercase;
  color:#fff; background:#1f8a3b; box-shadow:0 10px 22px rgba(20,107,50,.28);
}
.zt-form-note { text-align:center; font-size:13px; color:#5b6472; margin-top:12px; font-family:Arial, Helvetica, sans-serif; }
.c4x-cta, .c4x-cmp-cta, .c4x-kit-cta, .fzb-cta { white-space:normal; line-height:1.25; max-width:100%; box-sizing:border-box; }
.site-footer{background:#0f172a;color:#cbd5e1;padding:2.5rem 0 1.5rem;font-size:.875rem;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__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;padding:0;margin:0}
.site-footer__list a{color:#cbd5e1;text-decoration:none}
.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 a{color:#cbd5e1;text-decoration:none;font-weight:700}
@media (max-width:900px) {
  .fzr-grid { grid-template-columns: 1fr !important; }
  .fzb-row, .fzb-row--rev .fzb-media { grid-template-columns: 1fr !important; }
  .fzb-row--rev .fzb-media { order: 0 !important; }
}
