/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 14 2026 | 13:53:39 */
:root{
  --heading:#315D90;
  --text:#000000;
  --btn-bg:#315D90;
  --btn-text:#69DBFF;
  --line:#E3EAF3;
  --tint:#F4F8FC;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  background:#FFFFFF;
  color:var(--text);
  font-size:16px;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{color:var(--text);line-height:1.25;font-weight:600;  font-family:'Poppins',sans-serif !important;}
h1{font-size:clamp(1.9rem,4vw,3.1rem);font-weight:600;color:var(--heading);font-family:'Poppins',sans-serif !important;}
h2{font-size:clamp(1.2rem,2.6vw,2.15rem);margin-bottom:5px; font-family:'Poppins',sans-serif !important;}
h3{font-size:1.2rem;margin-bottom:10px; font-family:'Poppins',sans-serif !important; }
p{margin-bottom:16px}
strong{font-weight:600}
a{color:var(--heading)}
.wrap{max-width:1400px;margin:0 auto;padding:0 24px}
section{padding:32px 0}
.eyebrow{
  display:inline-block;
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--heading);
  border:1px solid var(--heading);
  border-radius:100px;
  padding:7px 18px;
  margin-bottom:22px;
}
.btn{
  display:inline-block;
  background:var(--btn-bg);
  color:var(--btn-text);
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.95rem;
  padding:10px 30px;
  border-radius:8px;
  text-decoration:none;
  border:2px solid var(--btn-bg);
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(49,93,144,.28);color:var(--btn-text);}
.btn-outline{
  background:#FFFFFF;
  color:var(--heading);
  border:2px solid var(--btn-bg);
}
.btn-outline:hover{background:var(--tint);color:var(--text)}
.btn-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}

/* ---------- HERO (full-width, no side image) ---------- */
.hero{
  position:relative;
  width:100%;
 
  border-bottom:1px solid var(--line);
  padding:46px 0 0;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
 
}
.hero .wrap{position:relative}
.hero-inner{max-width:1350px}
.hero h1{margin-bottom:26px;letter-spacing:-.01em}
.hero h1 .hl{
  background:linear-gradient(180deg, transparent 62%, rgba(105,219,255,.55) 62%);
  padding:0 2px;
}
.hero p.lead{
  font-size:1.12rem;
  font-weight:500;
  color:var(--heading);
  border-left:5px solid var(--heading);
  padding:6px 0 6px 20px;
  margin-bottom:26px;
  max-width:1080px;
}
.hero-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 64px;

}
.hero-cols p{font-size:.97rem;margin-bottom:0}
.hero .btn-row{margin:34px 0 0}
.hero .btn{padding:10px 24px;font-size:1rem}

/* trust strip anchored to hero base */
.trust-bar{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:56px;
  background:#FFFFFF;
  border:1px solid var(--line);
  border-bottom:none;
  border-radius:16px 16px 0 0;
  box-shadow:0 -12px 34px rgba(49,93,144,.08);
  overflow:hidden;
}
.trust-bar .t-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 22px;
  border-right:1px solid var(--line);
}
.trust-bar .t-item:last-child{border-right:none}
.trust-bar .t-icon{
  flex:0 0 46px;height:46px;
  border-radius:12px;
  background:var(--heading);
  display:flex;align-items:center;justify-content:center;
}
.trust-bar .t-icon svg{width:24px;height:24px;stroke:#69DBFF;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.trust-bar .t-text small{
  display:block;
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#5A7BA0;
  line-height:1.4;
}
.trust-bar .t-text span{
  display:block;
  font-size:.92rem;
  font-weight:700;
  color:var(--heading);
  line-height:1.35;
}
@media (max-width:980px){
  .trust-bar{grid-template-columns:repeat(2,1fr)}
  .trust-bar .t-item:nth-child(2n){border-right:none}
  .trust-bar .t-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
}
@media (max-width:560px){
  .trust-bar{grid-template-columns:1fr}
  .trust-bar .t-item{border-right:none;border-bottom:1px solid var(--line)}
  .trust-bar .t-item:last-child{border-bottom:none}
}

/* ---------- SELECTION MATRIX ---------- */
.matrix-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:12px}
table.matrix{width:100%;border-collapse:collapse;min-width:720px;background:#fff}
table.matrix th{
  background:var(--heading);
  color:#FFFFFF;
  text-align:left;
  font-weight:600;
  font-size:.9rem;
  padding:16px 18px;
}
table.matrix td{
  padding:15px 18px;
  border-top:1px solid var(--line);
  font-size:.93rem;
  vertical-align:top;
}
table.matrix tr:nth-child(even) td{background:var(--tint)}
table.matrix td a{font-weight:600;text-decoration:none}
table.matrix td a:hover{text-decoration:underline}
.note-box{
  margin-top:28px;
  background:var(--tint);
  border-left:5px solid var(--heading);
  border-radius:0 10px 10px 0;
  padding:22px 26px;
}
.note-box p:last-child{margin-bottom:0}

/* ---------- FAMILY SECTIONS ---------- */
.family{border-top:1px solid var(--line)}
.family-head{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:34px;
  align-items:center;
  margin-bottom:34px;
}
.family-head img{
  width:170px;height:170px;object-fit:cover;
  border-radius:14px;border:1px solid var(--line);background:#fff;
}
.family-head p{margin-bottom:0}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(255px,1fr));
  gap:22px;
  margin:8px 0 30px;
}
.card{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover{transform:translateY(-5px);box-shadow:0 16px 34px rgba(49,93,144,.14);border-color:var(--heading)}
.card .img{
  background:var(--tint);

  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid var(--line);
}
.card .img img{width:100%;height:100%;object-fit:cover}
.card .body{padding:20px 20px 22px;display:flex;flex-direction:column;flex:1;}
.card h3{font-size:1.02rem;margin-bottom:8px; color:#000000}
.card p{font-size:.88rem;line-height:1.65;margin-bottom:14px}
.card a.link{
  margin-top:auto;
  font-size:.86rem;font-weight:600;text-decoration:none;color:var(--heading);
}
.card a.link:hover{text-decoration:underline}
.materials{
  font-size:.92rem;
  background:var(--tint);
  border-radius:10px;
  padding:16px 20px;
  margin-bottom:26px;
}
.materials p{margin-bottom:0}

/* ---------- DIFFERENCE BOX ---------- */
.diff{
  background:var(--heading);
  border-radius:16px;
  padding:40px 42px;
  margin:36px 0 30px;
}
.diff h3{color:#FFFFFF;font-size:1.35rem;margin-bottom:14px}
.diff p{color:#FFFFFF;margin-bottom:0}
.diff .btn{background:#FFFFFF;color:var(--heading);border-color:#FFFFFF;margin-top:22px}

/* ---------- 3-COL BLOCKS ---------- */
.tri{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px;margin-top:10px}
.tri .block{
  border:1px solid var(--line);
  border-top:5px solid var(--heading);
  border-radius:12px;
  padding:26px 26px 24px;
  background:#fff;
}
.tri .block p:last-child{margin-bottom:0;font-size:.93rem}

/* ---------- WHAT TO SEND (checklist) ---------- */
.send-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:22px;
  margin:26px 0 26px;
}
.send-card{
  background:#FFFFFF;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.send-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px rgba(49,93,144,.13);border-color:var(--heading)}
.send-card .send-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  background:var(--tint);
  border-bottom:1px solid var(--line);
}
.send-card .send-head .s-icon{
  flex:0 0 44px;height:44px;border-radius:11px;
  background:var(--heading);
  display:flex;align-items:center;justify-content:center;
}
.send-card .send-head .s-icon svg{width:23px;height:23px;stroke:#69DBFF;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.send-card .send-head small{
  display:block;font-size:.68rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:#5A7BA0;line-height:1.4;
}
.send-card .send-head h3{font-size:1.02rem;margin:0;line-height:1.3}
.send-card ul{list-style:none;padding:16px 22px 20px;margin:0}
.send-card ul li{
  position:relative;
  padding:9px 0 9px 30px;
  font-size:.92rem;
  line-height:1.6;
  border-bottom:1px dashed var(--line);
}
.send-card ul li:last-child{border-bottom:none}
.send-card ul li::before{
  content:"";
  position:absolute;left:0;
  width:18px;height:18px;border-radius:50%;
  background:var(--heading);
}
.send-card ul li::after{
  content:"✓";
  position:absolute;left:4px;top:9px;
  font-size:.72rem;font-weight:700;color:#69DBFF;
}
.send-tip{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:22px;
  background:var(--heading);
  border-radius:16px;
  padding:30px 34px;
}
.send-tip .tip-icon{
  flex:0 0 58px;height:58px;border-radius:14px;
  background:rgba(105,219,255,.16);
  border:1px solid rgba(105,219,255,.45);
  display:flex;align-items:center;justify-content:center;
}
.send-tip .tip-icon svg{width:30px;height:30px;stroke:#69DBFF;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.send-tip .tip-text{flex:1 1 340px}
.send-tip h3{color:#FFFFFF;font-size:1.12rem;margin-bottom:6px}
.send-tip p{color:#FFFFFF;margin-bottom:0;font-size:.94rem}
.send-tip .btn-row{margin-top:0;flex:0 0 auto}
.send-tip .btn{background:#FFFFFF;color:var(--heading);border-color:#FFFFFF}
.send-tip .btn.btn-ghost{background:transparent;color:#69DBFF;border-color:#69DBFF}
.send-tip .btn.btn-ghost:hover{background:rgba(105,219,255,.12)}
@media (max-width:720px){
  .send-tip{padding:26px 22px}
  .send-tip .btn-row{width:100%}
}

/* ---------- WHY BUY ---------- */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:10px}
@media (max-width:760px){.why-grid{grid-template-columns:1fr}}
.why-grid .item{
  display:flex;gap:16px;align-items:flex-start;
  border:1px solid var(--line);border-radius:12px;padding:22px;background:#fff;
}
.why-grid .num{
  flex:0 0 44px;height:44px;border-radius:10px;
  background:var(--heading);color:#69DBFF;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1.05rem;
}
.why-grid p{margin-bottom:0;font-size:.93rem}
.why-grid strong{color:var(--heading)}

/* ---------- FAQ ---------- */
.faq-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 24px;
  align-items:start;
  margin-top:6px;
}
.faq details{
  border:1px solid var(--line);
  border-radius:10px;
  margin-bottom:14px;
  background:#fff;
  overflow:hidden;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.faq details[open]{border-color:var(--heading);box-shadow:0 10px 24px rgba(49,93,144,.10)}
.faq summary{
  cursor:pointer;
  list-style:none;
  padding:18px 52px 18px 22px;
  font-weight:600;
  color:var(--heading);
  position:relative;
  font-size:.98rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  position:absolute;right:20px;top:50%;transform:translateY(-50%);
  font-size:1.4rem;font-weight:400;color:var(--heading);
  transition:transform .2s ease;
}
.faq details[open] summary::after{content:"–"}
.faq details p{padding:0 22px 18px;margin-bottom:0;font-size:.93rem}
@media (max-width:860px){
  .faq-cols{grid-template-columns:1fr;gap:0}
}

/* ---------- FINAL CTA ---------- */
.final{
  background:linear-gradient(180deg,var(--tint) 0%, #FFFFFF 100%);
  border-top:1px solid var(--line);
  text-align:center;
}
.final .wrap{max-width:1360px}
.final .btn-row{justify-content:center}

.section-tint{background:var(--tint)}
.section-tint .card,.section-tint .why-grid .item,.section-tint .tri .block,.section-tint .faq details{background:#FFFFFF}

@media (max-width:720px){
  section{padding:52px 0}
  .hero{padding:60px 0 0}
  .hero-cols{grid-template-columns:1fr}
  .hero p.lead{font-size:1.02rem}
  .family-head{grid-template-columns:1fr;text-align:left}
  .family-head img{width:130px;height:130px}
  .diff{padding:30px 24px}
}