
        body {
            margin: 0;
            background: #ced6e5;
            color: #474d63;
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
        }

        .page-wrap {
            max-width: 95%;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .site-header {
            background: #a3b5d9;
            border-radius: 14px;
            padding: 22px 28px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 28px rgba(71, 77, 99, 0.12);
        }

        .logo-area {
            font-size: 26px;
            font-weight: bold;
            color: #67739e;
        }

        .top-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .top-buttons a,
        .cta-button {
            background: #67739e;
            color: #fff;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: bold;
            display: inline-block;
        }

        .top-buttons a:hover,
        .cta-button:hover {
            background: #474d63;
        }

        .content-box {
            background: #dfe4ee;
            border-radius: 14px;
            padding: 42px 46px;
            box-shadow: 0 10px 28px rgba(71, 77, 99, 0.12);
        }

        h1,
        h2,
        h3 {
			c
            color: #67739e;
            line-height: 1.2;
            margin-top: 0;
        }

        h1 {
            font-size: 44px;
            margin-bottom: 10px;
        }

        h2 {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: normal;
        }

        h3 {
            font-size: 26px;
            margin-top: 36px;
        }

        p {
            font-size: 18px;
            margin: 0 0 20px;
        }
		
		summary {
            font-size: 18px;
            margin: 0 0 5px;
        }
		
        ul {
            margin: 0 0 28px 22px;
            padding: 0;
            font-size: 18px;
        }

        li {
            margin-bottom: 8px;
        }

        .price {
            font-weight: bold;
            color: #67739e;
        }

        .cta-box {
            background: #ced6e5;
            border-radius: 12px;
            padding: 28px;
            margin-top: 36px;
            text-align: center;
        }

        .cta-box h3 {
            margin-top: 0;
            margin-bottom: 14px;
        }

        .cta-box p {
            margin-bottom: 22px;
        }

        .site-footer {
            text-align: center;
            padding: 26px 10px 0;
            color: #474d63;
            font-size: 14px;
        }

        @media (max-width: 700px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .top-buttons {
                justify-content: flex-start;
            }

            .content-box {
                padding: 30px 24px;
            }

            h1 {
                font-size: 34px;
            }

            h2 {
                font-size: 21px;
            }
        }

.features-section{
    margin:60px 0;
}

.features-section h2{
    text-align:center;
    color:#67739e;
    margin-bottom:30px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.feature-card{
    background:#fff;
    border:1px solid #67739e;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 0 15px rgba(103,115,158,0.4),
        0 0 30px rgba(103,115,158,0.25);
    border-color:#67739e;
}

.feature-icon{
    font-size:40px;
    margin-bottom:15px;
}

.feature-card h3{
	font-size: 20px;
    color:#67739e;
    margin:0 0 10px;
}

.feature-card p{
    color:#474d63;
    margin:0;
    line-height:1.5;
}

@media(max-width:800px){
    .feature-grid{
        grid-template-columns:1fr;
    }
}

.process-section{
    margin:60px 0;
}

.process-section h2{
    text-align:center;
    color:#67739e;
    margin-bottom:30px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.process-card{
    background:#fff;
    border:2px solid #67739e;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.process-card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 0 20px rgba(103,115,158,0.6),
        0 0 40px rgba(103,115,158,0.4),
        0 0 60px rgba(103,115,158,0.2);
}

.process-icon{
    font-size:40px;
    margin-bottom:15px;
}

.process-card h3{
	font-size: 20px;
    color:#67739e;
    margin:0 0 10px;
}

.process-card p{
    color:#474d63;
    margin:0;
    line-height:1.5;
}

@media(max-width:800px){
    .process-grid{
        grid-template-columns:1fr;
    }
}
.pricing-section{
    margin:60px 0;
}

.pricing-section h2{
    text-align:center;
    color:#67739e;
    margin-bottom:30px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.pricing-card{
    background:#fff;
    border:2px solid #67739e;
    border-radius:12px;
    padding:25px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.pricing-card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 0 20px rgba(103,115,158,0.6),
        0 0 40px rgba(103,115,158,0.4),
        0 0 60px rgba(103,115,158,0.2);
}

.pricing-icon{
    font-size:42px;
    margin-bottom:15px;
}

.pricing-card h3{
    color:#67739e;
    margin:0 0 8px;
}

.pricing-card h4{
    color:#474d63;
    margin:0 0 15px;
    font-weight:normal;
}

.pricing-card p{
    color:#474d63;
    margin:0;
    line-height:1.5;
}

@media(max-width:800px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}

.hero,
.how-it-works,
.faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  font-family: Arial, sans-serif;
  color: #1f2937;
}

.hero {
  text-align: center;
}

.hero-eyebrow {
  color: #67739e;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.05;
  margin: 20px 0;
  color: #1f2a44;
}

.hero-subheadline,
.how-it-works p,
.faq p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 35px 0;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: #67739e;
  color: #fff;
}

.button-secondary {
  border: 2px solid #67739e;
  color: #67739e;
}

.hero-visual {
  margin: 50px auto;
  padding: 30px;
  max-width: 850px;
  border: 1px solid #dfe4ee;
  border-radius: 16px;
  background: #f7f9fc;
  text-align: left;
}

.hero-authority {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-authority div {
  padding: 12px 18px;
  border-radius: 999px;
  background: #eef2f8;
  font-weight: 700;
}

.hero-reassurance {
  max-width: 800px;
  margin: 30px auto 0;
  font-weight: 700;
  color: #4d5880;
}

.how-it-works h2,
.faq h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #1f2a44;
  margin-bottom: 24px;
  text-align: center;
}

.how-it-works article {
  margin-top: 35px;
  padding: 28px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dfe4ee;
  box-shadow: 0 10px 30px rgba(103, 115, 158, 0.12);
}

.how-it-works h3 {
  font-size: 26px;
  color: #4d5880;
  margin-top: 0;
}

.how-it-works li,
.hero-visual li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq details {
  margin-top: 18px;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid #dfe4ee;
  background: #ffffff;
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #4d5880;
}

.faq summary::marker {
  color: #67739e;
}

@media (max-width: 100%) {
  .hero,
  .how-it-works,
  .faq {
    padding: 25px 18px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .how-it-works h2,
  .faq h2 {
    font-size: 32px;
  }
}

.final-crossroads,
.guarantee,
.final-cta,
.final-ps {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 14px;
}

.final-crossroads h2,
.guarantee h2,
.final-cta h2 {
    text-align: center;
    font-size: 42px;
    color: #1f2a44;
    margin-bottom: 30px;
}

.final-crossroads p,
.guarantee p,
.final-cta p,
.final-ps p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
    margin: 0 auto 24px;
}

.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg,#67739e,#4d5880);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.guarantee-box h2,
.guarantee-box p {
    color: #fff;
}

.final-cta {
    text-align: center;
}

.final-ps {
    padding-top: 20px;
}

.ps-box {
    max-width: 95%;
    margin: 0 auto;
    padding: 35px;
    background: #f7f9fc;
    border-left: 6px solid #67739e;
    border-radius: 12px;
}

.ps-box h3 {
    margin-top: 0;
    color: #4d5880;
    font-size: 28px;
}

.ps-link {
    color: #67739e;
    font-weight: 700;
    text-decoration: none;
}

.ps-link:hover {
    text-decoration: underline;
}

.final-crossroads,
.guarantee,
.final-cta,
.final-ps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
}

.final-crossroads h2,
.guarantee h2,
.final-cta h2 {
    text-align: center;
    font-size: 42px;
    color: #1f2a44;
    margin-bottom: 30px;
}

.final-crossroads p,
.guarantee p,
.final-cta p,
.final-ps p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 100%;
    margin: 0 auto 24px;
}

.guarantee-box {
    max-width: 85%;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg,#67739e,#4d5880);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.guarantee-box h2,
.guarantee-box p {
    color: #fff;
}

.final-cta {
    text-align: center;
}

.final-ps {
    padding-top: 20px;
}

.ps-box {
    max-width: 85%;
    margin: 0 auto;
    padding: 35px;
    background: #f7f9fc;
    border-left: 6px solid #67739e;
    border-radius: 12px;
}

.ps-box h3 {
    margin-top: 0;
    color: #4d5880;
    font-size: 28px;
}

.ps-link {
    color: #67739e;
    font-weight: 700;
    text-decoration: none;
}

.ps-link:hover {
    text-decoration: underline;
}

@media (max-width:700px){

    .final-crossroads,
    .guarantee,
    .final-cta,
    .final-ps{
        padding:25px 18px;
    }

    .final-crossroads h2,
    .guarantee h2,
    .final-cta h2{
        font-size:32px;
    }

    .guarantee-box,
    .ps-box{
        padding:25px;
    }

}

    .final-crossroads,
    .guarantee,
    .final-cta,
    .final-ps{
        padding:14px 18px;
    }

    .final-crossroads h2,
    .guarantee h2,
    .final-cta h2{
        font-size:32px;
    }

    .guarantee-box,
    .ps-box{
        padding:25px;
    }

}

.pricing-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}

.pricing-framework h2 {
    text-align: center;
    font-size: 42px;
    color: #1f2a44;
    margin-bottom: 30px;
}

.pricing-framework h3 {
    font-size: 32px;
    color: #4d5880;
    text-align: center;
    margin: 60px 0 30px;
}

.pricing-framework h4 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
    color: #4d5880;
}

.pricing-framework p,
.pricing-framework li {
    font-size: 18px;
	font-weight: normal;
    line-height: 1.8;
}

.pricing-framework ul {
    max-width: 900px;
    margin: 30px auto;
    padding-left: 24px;
}

.pricing-stage {
    max-width: 900px;
    margin: 35px auto;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #dfe4ee;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(103,115,158,.12);
}

.pricing-stage:hover {
    transform: translateY(-4px);
    transition: .25s;
}

.pricing-no-hype {
    max-width: 750px;
    margin: 45px auto;
    padding: 35px;
    background: linear-gradient(135deg,#67739e,#4d5880);
    border-radius: 14px;
    text-align: center;
}

.pricing-no-hype p {
    margin: 12px 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.pricing-final-cta {
    margin-top: 70px;
    padding: 50px;
    background: #f7f9fc;
    border-radius: 16px;
    border: 1px solid #dfe4ee;
    text-align: center;
}

.pricing-final-cta h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #67739e;
}

.pricing-final-cta h2 {
    margin-bottom: 30px;
}

.pricing-final-cta p {
    max-width: 700px;
    margin: 30px auto 0;
}

@media (max-width:700px) {

    .pricing-framework {
        padding: 45px 18px;
    }

    .pricing-framework h2 {
        font-size: 32px;
    }

    .pricing-framework h3 {
        font-size: 26px;
    }

    .pricing-framework h4 {
        font-size: 20px;
    }

    .pricing-stage,
    .pricing-final-cta,
    .pricing-no-hype {
        padding: 25px;
    }

    .pricing-no-hype p {
        font-size: 18px;
    }
}
 
 
.countdown-box{
    max-width:320px;
    margin:20px auto;
    padding:18px;
    background:#dfe4ee;
    border:1px solid #67739e;
    border-radius:16px;
    text-align:center;
    box-shadow:0 8px 20px rgba(103,115,158,.12);
}

.countdown-box h3{
    margin:0;
    color:#4d5880;
    font-size:18px;
}

.countdown-date{
    margin:10px 0 18px;
    color:#67739e;
    font-size:14px;
    font-weight:600;
}

.countdown-timer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
}

.countdown-item{
    flex:1;
    background:#67739e;
    border-radius:10px;
    color:#fff;
    padding:10px 4px;
}

.countdown-item span{
    display:block;
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.countdown-item small{
    display:block;
    margin-top:6px;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.countdown-note{
    margin:16px 0 0;
    font-size:12px;
    color:#4d5880;
    line-height:1.4;
}

@media(max-width:700px){

    .countdown-box{
        max-width:100%;
    }

    .countdown-timer{
        gap:6px;
    }

    .countdown-item span{
        font-size:18px;
    }

    .countdown-item small{
        font-size:9px;
    }

}
