@font-face {
    font-family: PWPrimary;
    src: url("../../css/font/Manrope/static/Manrope-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: PWPrimary;
    font-weight: bold;
    src: url("../../css/font/Manrope/static/Manrope-Regular.ttf") format("truetype");
}

@font-face {
    font-family: PWSecondary;
    src: url("../../css/font/SourceSerif4/static/SourceSerif4-Light.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "PWPrimary", "Arial", sans-serif;
    background-color: #F7F5F0;
    color: #222823;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1;
}

h2 {
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: bold;
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.1;
}

h3 {
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: normal;
    margin: 0 0 24px 0;
    padding: 0;
    line-height: 1.2;
}

h4 {
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: bold;
    margin: 0 0 16px 0;
    padding: 0;
}

h5 {
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: bold;
    margin: 0 0 12px 0;
    padding: 0;
}

p {
    margin: 0 0 16px 0;
    line-height: 1.7;
}

/* Brand colors */
.pw_color_black_bg {
    background-color: #222823;
    color: #F7F5F0;
}

.pw_color_green_bg {
    background-color: #D8F473;
    color: #222823;
}

.pw_color_green {
    color: #D8F473;
}

.light {
    color: #F7F5F0;
}

/* Logo */
.logo_pw_lime {
    display: block;
    width: 180px;
    height: 44px;
    background: url('../../img/logo/primary/Solid/Primary_Solid-Cream.png') center / contain no-repeat;
}

/* Layout */
content {
    display: block;
    width: 100%;
}

section {
    padding: 64px 40px;
}

.cover_sides {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.subtitle {
    font-size: 20px;
    color: #8F9672;
    margin-bottom: 32px;
}

.two-col {
    display: flex;
    gap: 40px;
}

.two-col > * {
    flex: 1;
}

/* Nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #222823;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-link {
    font-size: 14px;
    color: #8F9672;
    letter-spacing: 0.04em;
}

.nav-link:hover {
    color: #D8F473;
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 100px 40px 80px;
}

.hero-inner {
    max-width: 760px;
}

eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #8F9672;
    margin-bottom: 16px;
    font-weight: bold;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #8F9672;
    margin: 24px 0 36px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #D8F473;
    color: #222823;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: "PWPrimary", "Arial", sans-serif;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #c8e45a;
    outline: none;
    text-decoration: none;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    line-height: 1.5;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: #D8F473;
    margin-right: 10px;
    font-weight: bold;
}

/* Callout box */
.callout {
    border-radius: 12px;
    padding: 32px;
}

/* Comparison grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

.comparison-col {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 32px;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.5;
    position: relative;
    color: #F7F5F0;
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-bad li::before {
    content: "\00D7";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
}

.compare-good li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #D8F473;
    font-weight: bold;
}

/* Steps */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
    max-width: 800px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step > div {
    flex: 1;
}

stepnum {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 2px solid #222823;
    font-weight: bold;
    font-size: 18px;
    background-color: transparent;
    font-family: "PWPrimary", "Arial", sans-serif;
}

.step h5 {
    margin-bottom: 6px;
}

.step p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Expert callout */
.expert-callout {
    background-color: #F0EEE9;
    border-radius: 12px;
    padding: 24px 28px;
    margin-top: 24px;
}

.expert-callout .feature-list li {
    border-bottom-color: rgba(34, 40, 35, 0.1);
    color: #222823;
}

/* Form */
.form-section {
    background-color: #F7F5F0;
    padding: 80px 40px;
    scroll-margin-top: 65px;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro p {
    color: #444;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #222823;
}

.form-group input {
    border: 1.5px solid #c0bdb8;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: "PWPrimary", "Arial", sans-serif;
    background-color: #fff;
    color: #222823;
    transition: border-color 0.15s;
}

.form-group input:focus {
    outline: none;
    border-color: #D8F473;
}

.required {
    color: #c0392b;
}

.consent-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    color: #444;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #D8F473;
}

.form-error {
    background-color: #fdf0f0;
    border: 1px solid #e0b0b0;
    border-radius: 6px;
    padding: 12px 16px;
    color: #a33;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

/* ── Hero ───────────────────────────────────────────── */

sup.tm {
    font-size: 0.35em;
    vertical-align: super;
    font-weight: 400;
    letter-spacing: 0;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background-color: #D8F473;
    margin: 28px 0;
}

.hero-body {
    font-size: 16px;
    line-height: 1.75;
    color: #8F9672;
    margin: 0 0 14px;
    max-width: 640px;
}

.btn-hero {
    margin-top: 36px;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 8px;
    display: inline-block;
}

/* ── Shared section layout ──────────────────────────── */

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-lead {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 32px;
}

.section-sublabel {
    font-size: 11pt;
    font-weight: 600;
    color: #222823;
    margin: 0 0 20px;
}

/* ── How It Works ───────────────────────────────────── */

.section-how {
    padding: 72px 40px;
    background-color: #F7F5F0;
}

.examine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.examine-card {
    background: #fff;
    border: 1px solid #E0DDD8;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.examine-number {
    font-family: "PWSecondary", "Georgia", serif;
    font-size: 20pt;
    font-weight: 700;
    color: #DCDCDC;
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.examine-title {
    font-size: 10.5pt;
    font-weight: 600;
    color: #222823;
    margin-bottom: 8px;
}

.examine-body {
    font-size: 9.5pt;
    font-weight: 300;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── Statement ──────────────────────────────────────── */

.section-statement {
    padding: 64px 40px;
}

.statement {
    font-family: "PWSecondary", "Georgia", serif;
    font-size: 22pt;
    font-weight: 400;
    font-style: italic;
    color: #F7F5F0;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    border: none;
    max-width: 760px;
}

/* ── What You Receive ───────────────────────────────── */

.section-receive {
    padding: 72px 40px;
    background-color: #F7F5F0;
}

.receive-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: start;
}

.receive-card {
    background: #fff;
    border: 1px solid #E0DDD8;
    border-radius: 10px;
    padding: 28px 32px;
}

.receive-card-label {
    font-size: 11pt;
    font-weight: 700;
    color: #222823;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #DCDCDC;
}

.receive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.receive-list li {
    font-size: 9.5pt;
    font-weight: 300;
    color: #444;
    line-height: 1.6;
    padding: 9px 0 9px 20px;
    border-bottom: 1px solid #F0EEE9;
    position: relative;
}

.receive-list li:last-child {
    border-bottom: none;
}

.receive-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #D8F473;
    border-radius: 50%;
}

.receive-card-body {
    font-size: 9.5pt;
    font-weight: 300;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ── Who This Is For ────────────────────────────────── */

.section-who {
    padding: 72px 40px;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.who-list li {
    font-size: 12pt;
    font-weight: 300;
    color: rgba(247, 245, 240, 0.85);
    line-height: 1.6;
    padding: 18px 0 18px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.who-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.who-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #D8F473;
    border-radius: 50%;
}

/* ── Pricing ────────────────────────────────────────── */

.section-pricing {
    padding: 72px 40px;
    background-color: #F7F5F0;
}

.pricing-card {
    background: #222823;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.pricing-amount {
    font-family: "PWSecondary", "Georgia", serif;
    font-size: 48pt;
    font-weight: 700;
    color: #D8F473;
    line-height: 1;
}

.pricing-desc {
    font-size: 13pt;
    font-weight: 300;
    color: rgba(247, 245, 240, 0.7);
    margin-top: -4px;
}

.pricing-detail {
    font-size: 10pt;
    font-weight: 300;
    color: #8F9672;
    line-height: 1.65;
    margin: 8px 0 0;
    max-width: 520px;
}

.btn-pricing {
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 14px;
    border-radius: 8px;
    display: inline-block;
}

/* ── Scope Note ─────────────────────────────────────── */

.section-scope {
    padding: 32px 40px;
    background-color: #F7F5F0;
    border-top: 1px solid #E0DDD8;
}

.scope-note {
    font-size: 10px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
    max-width: 760px;
}

/* Footer */
footer {
    padding: 48px 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    width: 160px;
    height: 48px;
    flex-shrink: 0;
}

.footer-text {
    font-size: 13px;
    color: #8F9672;
}

.footer-text p {
    margin: 4px 0;
}

.footer-text a {
    color: #8F9672;
}

.footer-text a:hover {
    color: #D8F473;
    text-decoration: none;
}
