* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section {
    padding: 0;
    margin: 0;
}
body {
    font-family: Inter, sans-serif;
    background-color: #fefcf8;
    color: #1a1e2b;
    line-height: 1.4;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0 20px;
}
.container-med {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0 20px;
}
.container-tight {
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 0 20px;
}
.bg1 {
    background: #fffdf9;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 24px;
}
.bg2 {
    background: #fff;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 24px;
}
.bg3 {
    background: #f8fbfb;
}
.bg4 {
    background: #faf5ed;
}
.bg5 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 24px;
}
p {
    font-size: 23px;
    line-height: 1.35;
    color: #2c2f3a;
    margin-bottom: 30px;
}
p.tight {
    line-height: 1.1;
    margin-bottom: 15px;
}
a {
    font-size: 22px;
}
a.light {
    color: #6e6e6e;
}
br.tight {
    padding: 0;
    margin: 0;
}
.divider-item {
    position: relative;
    padding-right: 16px;
    margin-right: 12px;
    display: inline-block;
}
.divider-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: #ccc;
}

.order-text {
    max-width: 650px;
    margin: 50px auto;
}
.order-text a {
    display: block;
    color: #1d4ed8;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: all 0.2s ease;
}
.button {
    display: block;
    text-align: center;
    margin: 40px auto;
}
.btn-primary {
    background-color: #facc15;
    color: #04356d;
    font-weight: 800;
    font-size: 28px;
    padding: 20px 30px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(249, 224, 59, 0.3);
    transition: all 0.2s ease;
    outline: 2px solid #111827;
    outline-offset: 2px;
    background: linear-gradient(135deg, #fde047, #facc15);
}
.btn-primary:hover {
    background-color: #eab308;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.gray {
    background-color: #f9f9f9;
    padding: 25px 0 50px;
    margin: 0;
}
/* Header */
.topbar {
  position: relative;

  height: 65px;
  width: 100%;

  background:
    linear-gradient(
      180deg,
      #16242b 0%,
      #0d1b20 100%
    );

  border-bottom: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(12px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.35);

  z-index: 1000;
}

/* Layout */
.topbar-inner {
  max-width: 1280px;

  height: 100%;

  margin: 0 auto;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Box */
.logo-box {
  display: flex;
  align-items: center;

  height: 100%;

  overflow: hidden;
}

.header-logo {
  max-height: 45px;

  width: auto;

  display: block;

  object-fit: contain;
}

/* Right Side */
.topbar-right {
  display: flex;
  align-items: center;

  gap: 18px;
}

/* Icons */
.icon-group {
  display: flex;
  gap: 12px;
}

.icon-group a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 12px;

  background:
    rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.06);

  color: #d8e3ea;

  text-decoration: none;
}

/* Login */
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 42px;

  padding: 0 20px;

  border-radius: 7px;

  background:
    linear-gradient(
      180deg,
      #7cd47e,
      #60cc63
    );

  color: #111;

  font-size: 16px;
  font-weight: 700;

  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {

  .topbar {
  height: auto;
  padding: 14px 0;
}

.topbar-inner {
  display: flex;
  flex-direction: row;   /* keeps items side by side */
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;     /* prevents stacking */
}

.topbar-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;     /* keeps buttons/items on same line */
}
.icon-group {
	display:none;
}

.header-logo {
  max-height: 44px;
}

}
/*end of header */

.red-bg {
    background: #c2470a;
}
.white-bg {
    background: #fff;
}
.green-bg {
    background: #1f701d;
}
.white-text {
    color: #fff;
}
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #e25822;
    margin: 4% auto 10%;
    text-align: center;
    text-shadow:
        3px rgba(195, 3, 3, 0.08),
        3px rgba(195, 3, 3, 0.05);
}
.white-text {
    color: #fff;
}
h2 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.12rem;
    color: #21364b;
    margin: 20px auto 50px;
    text-align: center;
}
.big {
    font-size: 4rem;
}
.xpad {
    margin: 70px auto 50px;
}
h5 {
    max-width: 800px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f1722;
    margin: 0 auto;
    text-align: center;
}
h4 {
    max-width: 800px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #0f1722;
    margin: 10px auto;
    text-align: center;
}
p.red {
    color: #c2470a;
    font-weight: 700;
}
.red {
    color: #b91617;
}
p.green {
    color: #007043;
    font-weight: 700;
}
.green {
    color: #007043;
}
p.xlrg {
    font-size: 114px;
    color: #1f2937;
    text-align: center;
    padding-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.05em;
}
p.lrg {
    font-size: 46px;
    color: #1f2937;
    text-align: center;
    padding-bottom: 0;
    margin: 0;
    font-weight: 700;
}
p.med {
    font-size: 29px;
}
p.date {
    font-size: 21px;
    margin: 125px auto 55px;
}
p.sm {
    font-size: 18px;
    padding-bottom: 0;
    margin-bottom: -5px;
}
p.sm1 {
    font-size: 21px;
    padding-bottom: 0;
    margin-bottom: -5px;
    max-width: 80%;
}
p.sm2 {
    font-size: 17px;
}
p.light {
    color: #6e6e6e;
    padding-top: 0;
    margin: 0 auto 45px;
}
.light {
    color: #65758b;
}
.center {
    text-align: center;
}
.red2 {
    color: #e44304;
}
.highlight {
    color: #e25822;
    border-bottom: 3px solid #ffd8c4;
    display: inline-block;
}
.highlight-yellow {
    background: linear-gradient(to bottom, transparent 50%, #f9ecb5 50%);
    display: inline;
}
.tb {
    border: 1px solid #8c8c8c;
}
.middle {
    text-align: center;
    margin: 40px auto;
    display: block;
}
.left {
    text-align: left;
}
.sig {
    max-width: 300px;
    margin: 20px 0;
    display: block;
}
.letter-box {
    max-width: 840px;
    margin: 60px auto;
    padding: 50px 40px;
    background: #fffdf9;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 32px;
    border: 1px solid #e6ded3;
    border-radius: 8px;
    transform: rotate(-0.2deg);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
}
.letter-meta {
    font-size: 22px;
    color: #6b6b6b;
    margin-bottom: 40px;
}
.letter-box p {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 1.3;
    color: #2c2f3a;
}
.letter-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
}
.full-text {
    width: 100%;
}
.pt0 {
    padding-top: 0;
}
.mt0 {
    margin-top: 0;
}
.mt10 {
    margin-top: 10px;
}
.pb0 {
    padding-bottom: 0;
}
.pb10 {
    padding-bottom: 10px;
}
.pt15 {
    padding-top: 15px;
}
.pad30 {
    padding: 30px 0;
}
.pt80 {
    padding-top: 80px;
}
.pad-160 {
    padding-top: 160px;
}
.mb0 {
    margin-bottom: 0;
}
.m50 {
    margin-top: 50px;
}
.mt80 {
    margin-top: 80px;
}
.m90 {
    margin-top: 90px;
}
.space80 {
    margin: 80px auto;
}
.order-box {
    max-width: 700px;
    background-color: rgba(259, 245, 237, 0.2);
    backdrop-filter: blur(4px);
    padding: 30px 30px;
    margin: 25px auto;
    border-radius: 32px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    flex: 1;
    border: 2px solid #e25822;
}
.text-box {
    max-width: 700px;
    background: #f6f9fa;
    padding: 20px 20px 0;
    margin: 25px auto 40px;
    border: 1px dashed #83bac4;
}
.text-box p {
    color: #15434b;
    line-height: 1.1;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    justify-content: space-between;
    margin: 48px 0;
}
.stat-card {
    background: #fff;
    backdrop-filter: blur(4px);
    padding: 10px;
    border-radius: 32px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    flex: 1;
    border: 2px solid #fff0e4;
}
.square {
    background: #fefefe;
    backdrop-filter: blur(4px);
    padding: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    flex: 1;
    border: 2px solid #fff0e4;
}
.graph {
    max-width: 800px;
}
.limited {
    background: #fff4f4;
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    border: 1px solid #e2c5ba;
}
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.icon {
    font-size: 26px;
    line-height: 1;
}
.text {
    flex: 1;
}
.price-box {
    background: #1a262f;
    color: #fff;
    border-radius: 48px;
    padding: 40px 32px;
    text-align: center;
}
footer {
    padding: 35px 0 5px;
    text-align: center;
    background-color: #f9f9f9;
    font-size: 0.85rem;
}
footer p {
    text-align: center;
    color: #989898;
    font-size: 15px;
    padding: 0;
}
.feature-list {
    max-width: 760px;
    margin: 60px auto 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.num {
    min-width: 44px;
    height: 44px;
    background: #007043;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 4px;
}
.content h3 {
    margin: 0 0 6px;
    font-size: 22px;
}
.content p {
    margin: 0;
    line-height: 1.5;
    font-size: 22px;
}
.contact-line {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.icon {
    font-size: 22px;
}
.checklist {
    list-style: none;
    padding: 0 0 0 25px;
    margin: 40px 0 35px;
}
.checklist li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 45px;
    height: 45px;
    background-image: url(../images/check.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.video-wrap {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    aspect-ratio: 16/9;
}
.video-wrap iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.play-btn::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 20px;
    border-style: solid;
    border-width: 15px 0 15px 24px;
    border-color: transparent transparent transparent #fff;
}
.img-right {
    float: right;
    width: 400px;
    height: auto;
    margin: 20px -120px 20px 45px;
    background: #fff;
    border: 1px solid #e6dccf;
    border-radius: 12px;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 15px 35px rgba(0, 0, 0, 0.12);
}
.img-center {
    display: block;
    margin: 35px auto;
    width: 100%;
    height: auto;
}
.img-right2 {
    float: right;
    width: 400px;
    height: auto;
    margin: 20px -25px 20px 45px;
    background: #fff;
    border: 2px solid #e6dccf;
    border-radius: 12px;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 15px 35px rgba(0, 0, 0, 0.12);
}
.img-left {
    float: left;
    width: 400px;
    height: auto;
    margin: 20px 45px 20px -120px;
    background: #fff;
    border: 2px solid #e6dccf;
    border-radius: 12px;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 15px 35px rgba(0, 0, 0, 0.12);
}
.micah {
    max-width: 350px;
    padding-top: 0;
    margin-top: 13px;
}
.img-left2 {
    float: left;
    width: 400px;
    height: auto;
    margin: 20px 45px 20px -60px;
    background: #fff;
    border: 1px solid #e6dccf;
    border-radius: 12px;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 15px 35px rgba(0, 0, 0, 0.12);
}
.phone {
    float: right;
    max-width: 300px;
    transform: rotate(5deg);
}
.ai {
    float: right;
    max-width: 500px;
    margin-right: -120px;
}
.float-left {
    float: left;
    width: 150px;
    margin: 35px 25px 30px 0;
}
.polaroid {
    background: #fff;
    padding: 12px 12px 9px;
    border-radius: 6px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: 0.3s ease;
    border: 1px solid #eee;
}
.polaroid:hover {
    transform: rotate(0) scale(1.03);
}
.polaroid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}
.img-left-cover {
    float: left;
    width: 400px;
    height: 490px;
    object-fit: cover;
    object-position: center;
    margin: 10px 35px 20px 0;
    border-radius: 14px;
    border: 1px solid #e6dccf;
    background: #fff;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 18px 40px rgba(0, 0, 0, 0.12);
    display: block;
}
.img-center-frame {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 40px auto 50px;
    border-radius: 14px;
    border: 1px solid #e6dccf;
    background: #fff;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 18px 40px rgba(0, 0, 0, 0.12);
}
.img-frame {
    border-radius: 14px;
    border: 1px solid #e6dccf;
    background: #fff;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 18px 40px rgba(0, 0, 0, 0.12);
}
.proof-box {
    max-width: 720px;
    margin: 60px auto;
    padding: 28px 32px;
    background: #fffdf8;
    border-radius: 14px;
    border: 1px solid #e6dccf;
    box-shadow:
        0 0 0 4px #fff,
        0 0 0 6px #e6dccf,
        0 18px 40px rgba(0, 0, 0, 0.16);
    position: relative;
}
.proof-box p {
    margin-bottom: 20px;
    font-size: 23px;
    line-height: 1.3;
    color: #1a1e2b;
}
.proof-box p.med {
    font-size: 26px;
    line-height: 1.3;
}
.proof-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 6px;
    background: linear-gradient(to bottom, #e25822, #ffb347);
    border-radius: 6px;
}
.styled-list {
    counter-reset: step;
    list-style: none;
    padding-left: 2%;
    margin: 30px 0;
}
.styled-list li {
    counter-increment: step;
    margin: 10px 0;
    font-size: 23px;
    line-height: 1.35;
    position: relative;
    padding-left: 40px;
}
.styled-list li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    font-size: 23px;
    color: #2c2f3a;
}
.list-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    object-fit: contain;
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
.desktop-br {
  display: inline;
}

@media (max-width: 1160px) {
    .img-left,
    .img-left2 {
        margin: 20px 30px 20px 0;
    }
    .ai,
    .img-right,
    .img-right2 {
        margin: 20px 0 20px 30px;
    }
    .phone {
        transform: rotate(0);
    }
}
@media (max-width: 768px) {
 
	h1 {
        font-size: 2.1rem;
    }
	h2 {font-size:2.4rem;
	margin:20px auto 35px;}
	.content h3 {font-size:18px;}
	.mobi {
		font-size:2.0rem;
	}
	p.med {
		font-size: 20px;
	}
	.big {
		font-size:2.4rem;
	}
	p {font-size:18px;margin-bottom:20px;}
    .container {
        padding: 0 20px;
    }
	.container-tight {
		padding:10px 0 0 0;
	}
	.xpad {margin:10px auto 30px}
    section {
        padding: 15px 0;
    }
    .pad-160 {
        padding-top: 0;
    }
    .ai,
    .img-center,
    .img-left,
    .img-left2,
    .img-right,
    .img-right2,
    .phone {
        float: none;
        display: block;
        margin: 30px auto;
        width: 100%;
		border: none;
    box-shadow: none;
    border-radius: 0;
    }
	.polaroid {
	box-shadow: none;
    border-radius: 0;
	}
	.letter-box {
		padding:10px;
		margin-bottom:30px;
	}
	.letter-box p {
		font-size:18px;
		margin-bottom:22px;
	}
	.square {
		padding:0;
	}
    h2 br {
        display: none;
    }
	.proof-box p.med {
		font-size: 22px;
	}
    .img-left-cover {
        float: none;
        display: block;
        width: 100%;
        max-width: 400px;
        height: 260px;
        margin: 20px auto;
    }

	   .float-left {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
	p.date {
    font-size: 18px;
    margin: 45px auto 35px;
}
   .mobile-only {
    display: block;
  }
   .desktop-only {
    display: none;
  }
  .video-wrap {
	  margin:25px auto;
  }
    .desktop-br {
    display: none;
  }
  .content p {
	  font-size:18px;
  }
  .num {
	  min-width:35px;
	  height:35px;
  }
  .featured-list {
	  margin:30px auto 20px;
	flex-direction: column;
	gap:10px;
  }
  .icon {
    font-size: 18px;
}
.contact-item a {
	font-size:18px;
}
.mobi-tight {
	max-width:300px;
}
 .contact-line {
    gap: 10px;
  }
  .contact-line {
	  padding-bottom:20px;
  }
  .order-box {
	  border-radius:12px;
	  border:1px solid color:#e25822;
	  padding:15px;
  }
  p.sm1 {
	  font-size:17px;
  }
  .checklist {
	  padding:0 0 0 15px;
	  margin:15px 0;
  }
  .checklist li::before {
	  width:25px;
	  height:25px;
  } 
 .checklist li {
   padding-left: 30px;
    margin-bottom: 17px;
    font-size: 1.2rem;
}
.btn-primary {
	font-size:18px;
	padding: 20px 10px;
}
.divider-item {
        display: block;

        padding-right: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .divider-item::after {
        display: none;
    }
	.nb {
		border:none;
	}
	.highlight {
		display:inline;
	}
	.stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .stat-card {
        width: 75%;
		margin:0 auto;
    }
.order-text a {
	font-size:18px;
}
.pt80 {padding-top:35px;}
.sig {max-width:175px}
p.tight {line-height:1.2}
footer p {font-size:12px}
.hero{min-height:100px;}
}
@media (max-width: 600px) {
    .proof-box {
        margin: 30px 12px;
        padding: 22px 18px 5px 18px;
    }
    .proof-box p {
        font-size: 17px;
    }
	 .img-center-frame {
        margin: 30px auto;
    }
}


