

:root {
    --teal: #0A7C8C;
    --teal-soft: #0E8FA0;
    --teal-light: #E4F3F6;
    --teal-dark: #065A66;
    --teal-deep: #205a65;
    --teal-deepest: #105b6b;
    --teal-border: #bcdde4;
    --amber: #fdbd26;
    --amber-light: #FBF2E3;
    --red: #B83B3B;
    --red-light: #FBEAEA;
    --navy: #0E1A28;
    --text: #1C2B38;
    --text-mid: #3E5668;
    --text-muted: #7E96A4;
    --bg-page: #E5E4E1;
    --white: #FFFFFF;
    --border: #DDE3E7;
    --line: #dae3e8;
    --wash: #f4f8fa;
    --label: #7a909a;
    --body-text: #3a5060;
    --card-border: rgba(88, 141, 151, 0.22);
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --card: #FFFFFF;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(20, 45, 50, .08);
    --shadow-lg: 0 18px 45px rgba(20, 45, 50, .14);
    --muted: #7E96A4;
    --ink: #3E5668;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg-page);
    display: flex;
    justify-content: center;
    padding: 00px 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}


strong,
b {
    font-weight: 600;
}


a {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(10, 124, 140, 0.4);
    text-underline-offset: 3px;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

a:hover {
    color: var(--teal-dark);
    text-decoration-color: var(--teal-dark);
}

.page {
    width: 100%;
    max-width: 780px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 16px 56px rgba(15, 30, 50, 0.14);
}


.top-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--amber), var(--teal), var(--teal-dark));
}


.hero {
    background: var(--teal);
    padding: 28px 48px 0;
    position: relative;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-meta {
    text-align: right;
}

.hero-meta-line {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-meta-line strong {
    color: rgba(255, 255, 255, 0.85);
}

.hero-title {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--teal-light);
    font-size: 0.7em;
}

.hero-pill {
    width: 100%;
    text-align: center;
    display: table;
    margin: 30px auto 30px;
    padding: 8px 26px;
    background: var(--amber);
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 24px;
}

.hero-image-wrap {
    position: relative;
    padding-bottom: 36px;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
    position: relative;
}

.hero-curve {
    position: relative;
}

.hero-curve::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 36px;
    background: var(--white);
    border-radius: 36px 36px 0 0;
    z-index: 2;
}



.ep-hero-meta {
    display: inline-block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 1px;
}

.ep-hero-meta:hover {
    color: #fff;
    border-bottom-color: #fff;
}


.ep-hero-float {
    position: absolute;
    left: 14px;
    bottom: 20px;
    z-index: 11;
    max-width: 250px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-mid);
}

.ep-hero-float strong {
    display: block;
    color: var(--teal-dark);
    font-size: 13px;
    margin-bottom: 2px;
}

.ep-hero-float a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(10, 124, 140, 0.35);
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}


.label {
    font-family: var(--sans);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

h2 {
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.3px;
}

h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    font-style: italic;
    color: var(--teal-dark);
    margin-bottom: 14px;
    margin-top: 0px;
}

h4 {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 24px;
}

p {
    font-size: 0.95rem;
    line-height: 1.82;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.drop-cap {
    float: left;
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 0.78;
    padding-top: 6px;
    padding-right: 10px;
    color: var(--teal);
    font-weight: 700;
}


.prose-list,
.checklist,
.heels-list,
.kids-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.prose-list li,
.checklist li,
.heels-list li,
.kids-list li {
    position: relative;
    padding: 7px 0 7px 24px;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-mid);
    border-bottom: none;
}

.prose-list li::before,
.checklist li::before,
.heels-list li::before,
.kids-list li::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.prose-list li strong,
.checklist li strong,
.heels-list li strong,
.kids-list li strong {
    color: var(--text);
    font-weight: 600;
}


.pull-quote {
    position: relative;
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.5;
    color: var(--teal-dark);
    text-align: center;
    margin: 48px 0;
    padding: 36px 52px;
    font-style: italic;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pull-quote::before {
    content: '\201C';
    position: absolute;
    top: 6px;
    left: 8px;
    font-size: 5.5rem;
    color: var(--teal);
    opacity: 0.1;
    font-style: normal;
    line-height: 1;
    font-weight: 700;
}


.content {
    padding: 48px 52px;
}

.divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
}


.part-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 52px;
    user-select: none;
}

.part-divider::before,
.part-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.part-divider span {
    color: var(--teal);
    opacity: 0.35;
    font-size: 0.6rem;
    letter-spacing: 10px;
    margin-right: -10px;
    
}


.sub-divider {
    clear: both;
    border: none;
    height: 1px;
    background: var(--border);
    position: relative;
    margin: 46px 0 30px;
}

.sub-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: var(--teal);
    opacity: 0.55;
}

.section-num {
    font-family: var(--serif);
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--teal);
    opacity: 0.06;
    line-height: 1;
    display: block;
    margin-bottom: -24px;
    margin-left: -6px;
    pointer-events: none;
    user-select: none;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
    position: relative;
    top: -2px;
}

.tag-req {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.tag-opt {
    background: var(--amber-light);
    color: var(--amber);
    font-size: 0.8rem;
}

.tag-avoid {
    background: var(--red-light);
    color: var(--red);
}


.img-frame {
    border-radius: 8px;
    overflow: hidden;
    background: #eaeaea;
    position: relative;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}

.img-caption {
    font-size: 0.7rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.35;
}


.avoid-wrap {
    position: relative;
}

.avoid-x {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.avoid-x svg {
    width: 72%;
    height: 72%;
    opacity: 0.72;
}


.tip-box {
    background: var(--amber-light);
    border-left: 4px solid var(--amber);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

.tip-box h4 {
    margin-top: 0;
    color: var(--amber);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.tip-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


.product-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 24px 0;
}

.product-img {
    flex: 0 0 148px;
    height: 148px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-text {
    flex: 1;
}


.float-r {
    float: right;
    margin: 0 0 16px 24px;
}

.float-l {
    float: left;
    margin: 0 24px 16px 0;
}


.avoid-grid {
    display: flex;
    gap: 14px;
    margin: 24px 0;
    align-items: flex-start;
}

.avoid-grid-item {
    flex: 1;
}


.email-wrap {
    overflow-wrap: anywhere;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--label);
    margin: 0 0 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.section-heading {
    color: var(--teal-deep);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.15;
    margin: 0 0 20px;
}


.consult-timeline {
    list-style: none;
    counter-reset: consult;
    margin: 30px 0 0;
    padding: 0;
    max-width: 680px;
}

.consult-timeline > li {
    counter-increment: consult;
    position: relative;
    padding: 0 0 32px 62px;
}

.consult-timeline > li:last-child {
    padding-bottom: 4px;
}

.consult-timeline > li::before {
    content: counter(consult);
    position: absolute;
    left: 0;
    top: -2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--teal-deep);
    background: #fff;
    border: 1.5px solid #a9cdd5;
}

.consult-timeline > li:first-child::before {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(14, 124, 140, 0.12);
}

.consult-timeline > li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 4px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(#c3dde3, rgba(195, 221, 227, 0.15));
}

.consult-timeline > li > strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.consult-timeline p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-mid);
}

.consult-offers-lead {
    margin-top: 14px !important;
    color: var(--text) !important;
    font-weight: 600;
    font-size: 0.94rem !important;
}

.consult-offers {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consult-offers li {
    position: relative;
    padding-left: 26px;
    color: var(--text-mid);
    font-size: 0.94rem;
    line-height: 1.55;
}

.consult-offers li::before {
    content: "-";
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--teal);
    font-weight: 700;
}

.consult-fineprint {
    margin-top: 14px !important;
    font-size: 0.88rem !important;
    color: var(--text-mid);
}

.consult-fineprint a {
    color: var(--teal-deep);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #9cc7d0;
    text-underline-offset: 3px;
}

.consult-fineprint a:hover {
    color: var(--teal);
}

@media (max-width: 540px) {
    .consult-timeline > li {
        padding-left: 54px;
    }

    .consult-timeline > li::before {
        width: 36px;
        height: 36px;
    }

    .consult-timeline > li:not(:last-child)::after {
        left: 17px;
        top: 40px;
    }
}


.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
    padding: 22px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 124, 140, 0.25);
}

.cta-band-text {
    flex: 1 1 300px;
}

.cta-band-text strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.cta-band-text span {
    font-size: 0.93rem;
    opacity: 0.88;
}

.cta-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: var(--teal-deepest);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-band-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}


.cta-band--soft {
    background: var(--teal-light);
    border: 1px solid var(--teal-border);
    color: var(--teal-dark);
    box-shadow: none;
}

.cta-band--soft .cta-band-text strong {
    color: var(--teal-dark);
}

.cta-band--soft .cta-band-text span {
    opacity: 1;
    color: var(--text-mid);
}

.cta-band--soft .cta-band-btn {
    background: #fff;
    border: 1.5px solid var(--teal-soft);
    color: var(--teal-dark);
    box-shadow: none;
}

.cta-band--soft .cta-band-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(10, 124, 140, 0.25);
}


.cta-band--final {
    margin-top: 44px;
    padding: 30px 30px;
}

.cta-band--final .cta-band-text strong {
    font-size: 1.3rem;
}

.cta-band--final .cta-band-btn {
    overflow-wrap: anywhere;
    white-space: normal;
}


.git-a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--teal-light);
    border: 1px solid var(--teal-border);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 6px 0 14px;
}

.git-a p {
    margin: 0;
    color: var(--text-mid);
}

.git-a p strong {
    color: var(--teal-dark);
}

.git-a a {
    color: var(--teal);
    font-weight: 600;
    overflow-wrap: anywhere;
}


.pricing-note {
    background: var(--teal-light);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 28px 32px;
    margin: 36px 0 0;
}

.pricing-note-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.pricing-note h3 {
    margin: 0;
    font-style: italic;
    color: var(--teal-dark);
}

.pricing-note p {
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.pricing-note p:last-of-type {
    margin-bottom: 0;
}

.pricing-note .pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: var(--teal);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background .15s, transform .15s;
}

.pricing-note .pricing-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}


.price-vs {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
}

.price-vs .pv-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    line-height: 1.25;
}

.price-vs .pv-box small {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-vs .pv-old {
    background: #fff;
    border: 1px solid var(--teal-border);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: var(--text-muted);
}

.price-vs .pv-old s {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration-color: var(--red);
}

.price-vs .pv-new {
    background: var(--teal);
    border: 1px solid var(--teal);
    border-radius: 0 10px 10px 0;
    color: #fff;
}

.price-vs .pv-new small {
    color: rgba(255, 255, 255, 0.75);
}

.price-vs .pv-new b {
    font-family: var(--serif);
    font-size: 1.3rem;
}


.v6 {
    background: var(--card);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border);
}

.v6 .num {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 120px;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.v6 .num-icon {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 260px;
    height: 210px;
    opacity: 0.2;
    pointer-events: none;
    object-fit: contain;
}

.v6 .body {
    position: relative;
    z-index: 1;
    max-width: 75%;
}

.stage {
    max-width: 900px;
    margin: 0 auto;
}

.fg-eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
    margin: 0 0 10px;
}

.fg-title {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 6px;
    font-weight: 700;
}

.fg-sub {
    font-size: 15px;
    color: var(--muted);
    margin: 0 0 14px;
    font-style: italic;
}

.fg-desc {
    font-size: 15px;
    color: var(--ink);
    margin: 0 0 20px;
}

.fg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal);
    color: #fff;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s, background .15s;
}

.fg-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.fg-btn .arrow {
    transition: transform .2s;
}

.fg-btn:hover .arrow {
    transform: translateX(3px);
}
   .fg-list-lead {
                    font-size: 13px;
                    font-weight: 700;
                    color: var(--ink);
                    margin: 0 0 6px;
                }

                .fg-list {
                    list-style: none;
                    margin: 0 0 20px;
                    padding: 0;
                }

                .fg-list li {
                    position: relative;
                    padding: 3px 0 3px 20px;
                    font-size: 13.5px;
                    line-height: 1.5;
                    color: var(--ink);
                }

                .fg-list li::before {
                    content: '';
                    position: absolute;
                    left: 2px;
                    top: 11px;
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background: var(--teal);
                }

.poster-page {
    line-height: 0;
    background: var(--navy);
}

.poster-page img {
    width: 100%;
    height: auto;
    display: block;
}


@page {
    size: A4;
    margin: 0;
}

@media print {
    body {
        padding: 0;
        background: #fff;
    }

    .page {
        box-shadow: none;
        max-width: none;
    }

    .poster-page {
        break-before: page;
    }
}


@media (max-width: 600px) {
    body {
        padding: 0;
    }

    .hero {
        padding: 20px 24px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .content {
        padding: 32px 24px;
    }

    .part-divider {
        padding: 10px 24px;
    }

    .ep-hero-float {
        position: static;
        max-width: none;
        margin: 0 0 16px;
    }

    .avoid-grid {
        flex-direction: column;
    }

    .pull-quote {
        padding: 24px 20px;
        font-size: 1.2rem;
    }

    .pricing-note {
        padding: 22px 20px;
    }

    .v6 {
        padding: 28px;
    }

    .v6 .num {
        font-size: 86px;
        top: 18px;
        right: 20px;
    }

    .v6 .num-icon {
        width: 150px;
        height: 120px;
        top: 6px;
        right: 10px;
    }

    .v6 .body {
        max-width: 100%;
    }
}
