body {
    font-family: "Prompt", sans-serif;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #b49c55 #003e2d;
}
:root {
    --pm-ivory: #f5f2e9;
    --pm-green: #f3a30e;
    --pm-gold: #b49c55;
    --pm-light: #ffffff;
}
.pulse-hero-oldmoney {
    background: var(--pm-ivory);
    color: var(--pm-green);
    font-family: "Georgia", "Times New Roman", serif;
    padding: 6vw 5vw 8vw;
}
.pulse-banner-top {
    display: flex;
    align-items: center;
    gap: 2vw;
    font-size: 3.2vw;
    margin-bottom: 5vw;
}
.pulse-badge {
    background: var(--pm-green);
    color: var(--pm-light);
    padding: .8vw 2vw;
    border-radius: 50%;
    font-weight: 700;
}
.pulse-banner-top a {
    color: var(--pm-green);
    text-decoration: underline;
}
.pulse-hero-wrap {
    display: flex;
    flex-direction: column;
    gap: 6vw;
}
.pulse-hero-left {
    text-align: center;
}
.pulse-hero-heading {
    font-size: 7vw;
    line-height: 1.25;
    margin: 0 0 4vw;
    font-weight: 800;
}
.pulse-hero-heading span {
    color: var(--pm-gold);
}
.pulse-hero-tagline {
    font-size: 3.5vw;
    margin-bottom: 5vw;
    color: #333;
}
.pulse-hero-cta {
    background: var(--pm-green);
    color: var(--pm-light);
    padding: 3vw 7vw;
    border-radius: 3vw;
    font-size: 4vw;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s ease;
}
.pulse-hero-cta:hover {
    background: var(--pm-gold);
    color: var(--pm-green);
}
.pulse-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pulse-medallion {
    width: 24vw;
    height: 24vw;
    border: .8vw solid var(--pm-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 7vw;
    font-weight: 800;
    color: var(--pm-green);
    letter-spacing: -.4vw;
}
.pulse-info-strip {
    margin-top: 8vw;
    border: .4vw dashed var(--pm-gold);
    border-radius: 4vw;
    padding: 4vw 3vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    font-size: 3.4vw;
    font-weight: 600;
    background: var(--pm-light);
    color: var(--pm-green);
}
@media (min-width:768px) {
    .pulse-banner-top {
    font-size: 1.1vw;
    gap: 1vw;
    margin-bottom: 2vw;
}
.pulse-badge {
    padding: .4vw 1.2vw;
    font-size: 1.2vw;
}
.pulse-hero-wrap {
    flex-direction: row;
    align-items: center;
    gap: 5vw;
}
.pulse-hero-left {
    text-align: left;
    flex: 1;
}
.pulse-hero-heading {
    font-size: 3vw;
    margin-bottom: 1.5vw;
}
.pulse-hero-tagline {
    font-size: 1.2vw;
    margin-bottom: 2.5vw;
}
.pulse-hero-cta {
    font-size: 1.15vw;
    padding: 1.2vw 3vw;
    border-radius: .6vw;
}
.pulse-medallion {
    width: 12vw;
    height: 12vw;
    font-size: 3.3vw;
    border: .3vw solid var(--pm-gold);
}
.pulse-info-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 3vw;
    font-size: 1.15vw;
    border-radius: 1.2vw;
    margin-top: 4vw;
}
}.pulse-offers-section {
    background: var(--pm-ivory);
    padding: 1vw 5vw;
    display: grid;
    gap: 6vw;
}
.pulse-offer-card {
    background: #ffffff;
    border: .4vw solid var(--pm-gold);
    border-radius: 2vw;
    padding: 6vw 4vw 4vw;
    box-shadow: 0 .5vw 1vw rgba(0, 0, 0, .06);
    font-family: "Georgia", serif;
    color: var(--pm-green);
    text-align: center;
    position: relative;
}
.pulse-offer-logo {
    position: absolute;
    top: -5vw;
    left: 50%;
    transform: translateX(-50%);
    width: 27vw;
    height: 16vw;
    border-radius: 50%;
    background: #fff;
    border: .4vw solid var(--pm-gold);
    overflow: hidden;
    box-shadow: 0 .4vw 1vw rgba(0, 0, 0, .2);
}
.pulse-offer-logo img {
    width: 90%;
    height: 100%;
    object-fit: contain;
}
.pulse-offer-header h3 {
    font-size: 4.2vw;
    font-weight: 700;
    margin-bottom: 1.5vw;
    margin-top: 6vw;
}
.pulse-offer-amount {
    font-size: 3.8vw;
    font-weight: 600;
    color: var(--pm-gold);
}
.pulse-offer-features {
    list-style: none;
    padding: 0;
    margin: 4vw 0;
    font-size: 3.4vw;
    line-height: 1.5;
    color: #333;
}
.pulse-offer-rating {
    font-size: 3.3vw;
    margin-bottom: 3vw;
    color: #222;
}
.pulse-offer-rating span {
    display: block;
    font-size: 3vw;
    color: #777;
}
.pulse-offer-btn {
    background: var(--pm-green);
    color: #ffffff;
    text-decoration: none;
    font-size: 3.5vw;
    font-weight: bold;
    padding: 3vw 6vw;
    border-radius: 2vw;
    display: inline-block;
    margin-bottom: 3vw;
    transition: background .3s ease;
}
.pulse-offer-btn:hover {
    background: var(--pm-gold);
    color: var(--pm-green);
}
.pulse-offer-verification {
    font-size: 3vw;
    margin-bottom: 1.5vw;
    color: #444;
}
.pulse-offer-note {
    font-size: 2.6vw;
    color: #888;
    line-height: 1.4;
}
@media (min-width:768px) {
    .pulse-offers-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
}
.pulse-offer-card {
    padding: 5vw 3vw 3vw;
}
.pulse-offer-logo {
    top: -3vw;
    width: 13vw;
    height: 10vw;
    border: .3vw solid var(--pm-gold);
}
.pulse-offer-header h3 {
    font-size: 1.8vw;
    margin-top: 3.5vw;
}
.pulse-offer-amount {
    font-size: 1.4vw;
}
.pulse-offer-features {
    font-size: 1.15vw;
}
.pulse-offer-rating {
    font-size: 1.2vw;
}
.pulse-offer-rating span {
    font-size: 1vw;
}
.pulse-offer-btn {
    font-size: 1.1vw;
    padding: 1.2vw 3vw;
    border-radius: .6vw;
}
.pulse-offer-verification {
    font-size: 1vw;
}
.pulse-offer-note {
    font-size: .95vw;
}
}.pulse-responsible-section {
    display: flex;
    flex-direction: column;
    background: #f7f6f2;
    padding: 3vw 5vw;
    gap: 5vw;
    color: #1d2e1e;
    font-family: "Georgia", serif;
}
.pulse-responsible-section h2 {
    font-size: 6vw;
    color: #103c2d;
    margin-bottom: 3vw;
}
.pulse-responsible-section h3 {
    font-size: 5vw;
    color: #1b2f26;
    margin-bottom: 3vw;
}
.pulse-responsible-left p, .pulse-responsible-right p {
    font-size: 3.6vw;
    line-height: 1.6;
    margin-bottom: 3vw;
}
.pulse-responsible-left ul {
    list-style: none;
    padding-left: 0;
    font-size: 3.4vw;
}
.pulse-responsible-left ul li {
    margin-bottom: 1.5vw;
}
.pulse-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
    margin-bottom: 4vw;
}
.pulse-stats div {
    background: #ffffff;
    padding: 3vw;
    border: .3vw solid #cad8cd;
    border-radius: 1.2vw;
    text-align: center;
}
.pulse-stats strong {
    display: block;
    font-size: 4.8vw;
    color: #0e5c3c;
}
.pulse-stats span {
    font-size: 3vw;
    color: #5d5d5d;
}
@media (min-width:768px) {
    .pulse-responsible-section {
    flex-direction: row;
}
.pulse-responsible-left, .pulse-responsible-right {
    width: 50%;
    padding: 0 3vw;
}
.pulse-responsible-section h2 {
    font-size: 2.4vw;
}
.pulse-responsible-section h3 {
    font-size: 2vw;
}
.pulse-responsible-left p, .pulse-responsible-right p {
    font-size: 1.2vw;
}
.pulse-responsible-left ul {
    font-size: 1.2vw;
}
.pulse-stats strong {
    font-size: 2vw;
}
.pulse-stats span {
    font-size: 1vw;
}
}.pulse-footer {
    background-color: #f5f5f0;
    padding: 4vw 2vw;
    font-family: "Montserrat", sans-serif;
    color: #333;
    text-align: center;
    border-top: 1px solid #ccc;
}
.pulse-careful-section {
    margin-bottom: 2vw;
}
.pulse-careful-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-bottom: 2vw;
}
.pulse-careful-row .careful-img {
    height: 4vw;
    max-height: 40px;
    transition: transform .3s ease;
    filter: invert(1);
}
.pulse-careful-row .careful-img:hover {
    transform: scale(1.08);
}
.pulse-footer-links {
    font-size: 1vw;
    margin-bottom: 1vw;
}
.pulse-footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 1vw;
    transition: color .3s ease;
}
.pulse-footer-links a:hover {
    color: #000;
}
.pulse-footer-links span {
    color: #aaa;
}
.pulse-footer-info {
    font-size: .9vw;
    color: #777;
}
.pulse-footer-warning {
    font-size: 1vw;
    color: #a00;
    font-weight: 500;
    margin-top: .5vw;
}
@media (max-width:768px) {
    .pulse-careful-row {
    gap: 4vw;
}
.pulse-careful-row .careful-img {
    height: 8vw;
}
.pulse-footer-links {
    font-size: 3.5vw;
    margin-bottom: 3vw;
}
.pulse-footer-info {
    font-size: 3vw;
}
.pulse-footer-warning {
    font-size: 3.5vw;
}
}.pulse-evaluation-section {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
    padding: 4vw 6vw;
    background-color: #f8f8f3;
    font-family: "Montserrat", sans-serif;
    color: #2d2d2d;
    flex-wrap: wrap;
    border-top: 1px solid #dcdcd2;
}
.pulse-evaluation-left, .pulse-evaluation-right {
    flex: 1 1 45%;
    min-width: 300px;
}
.pulse-evaluation-left h2, .pulse-evaluation-right h3 {
    font-size: 2.2vw;
    margin-bottom: 1.2vw;
    color: #1a1a1a;
    font-weight: 600;
}
.pulse-evaluation-left p, .pulse-evaluation-right p {
    font-size: 1.1vw;
    line-height: 1.7;
    margin-bottom: 1.5vw;
}
.pulse-evaluation-criteria, .pulse-regulation-list {
    padding-left: 1.2vw;
    margin-bottom: 2vw;
}
.pulse-evaluation-criteria li, .pulse-regulation-list li {
    font-size: 1.05vw;
    margin-bottom: 1vw;
    list-style: none;
    position: relative;
    padding-left: 1.2vw;
}
.pulse-evaluation-criteria li::before, .pulse-regulation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3d7b99;
    font-weight: bold;
}
.pulse-evaluation-right h3 {
    margin-top: 2vw;
    font-size: 1.8vw;
    color: #444;
}
@media (max-width:768px) {
    .pulse-evaluation-section {
    flex-direction: column;
    padding: 6vw 5vw;
}
.pulse-evaluation-left, .pulse-evaluation-right {
    flex: 1 1 100%}
.pulse-evaluation-left h2, .pulse-evaluation-right h3 {
    font-size: 5.5vw;
}
.pulse-evaluation-left p, .pulse-evaluation-right p, .pulse-evaluation-criteria li, .pulse-regulation-list li {
    font-size: 4vw;
}
.pulse-evaluation-criteria, .pulse-regulation-list {
    padding-left: 3vw;
}
}
.pulse-responsible-wrap {
    background-color: #f6f7f9;
    color: #1f1f1f;
    padding: 4vw 6vw;
    font-family: "Montserrat", sans-serif;
    border-top: 1px solid #dcdcdc;
    line-height: 1.7;
}
.pulse-responsible-wrap-footer {
    background-color: #f6f7f9;
    color: #1f1f1f;
    padding: 3vw 3vw 0vw;
    font-family: "Montserrat", sans-serif;
    border-top: 1px solid #dcdcdc;
    line-height: 1.7;
}
.pulse-responsible-wrap h2 {
    font-size: 2.4vw;
    margin-bottom: 1.2vw;
    color: #26436a;
    font-weight: 600;
}
.pulse-responsible-wrap h3 {
    font-size: 1.6vw;
    margin-top: 2.5vw;
    margin-bottom: 1vw;
    color: #333;
    font-weight: 500;
}
.pulse-responsible-wrap p {
    font-size: 1.1vw;
    margin-bottom: 1vw;
}
.pulse-responsible-wrap ul {
    margin-left: 1.5vw;
    margin-bottom: 1.5vw;
}
.pulse-responsible-wrap ul li {
    font-size: 1.05vw;
    margin-bottom: .6vw;
}
@media (max-width:768px) {
    .pulse-responsible-wrap {
    padding: 6vw 5vw;
}
.pulse-responsible-wrap h2 {
    font-size: 6vw;
}
.pulse-responsible-wrap h3 {
    font-size: 4.5vw;
}
.pulse-responsible-wrap p, .pulse-responsible-wrap ul li {
    font-size: 4vw;
}
}