/* ========================== TOP BAR ========================== */

.topbar {
    background: #1f6b2e;
}

.topbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fff;
}

/* LEFT TEXT */
.topbar-container div {
    font-size: 21px;
    line-height: 25px;
}

/* BUTTON */
.topbar a {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: #3f9142; /* same as hero */
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.topbar a:hover {
    background: #367f38;
    transform: translateY(-1px);
}

.topbar a:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* Mobile View */
@media (max-width: 600px) {

    .topbar-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px 16px;
    }

    .topbar-container div {
        font-size: 15px;
        line-height: 22px;
    }

    .topbar a {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* Tablet Fix */
@media (max-width: 1024px) {

    .topbar-container {
        padding: 14px 40px; /* MATCH hero */
    }

}

/* ========================== HERO SECTION ========================== */

/* HERO SECTION */
.hero {
background: #e8ded1;
padding: 80px 0;
}

.hero-container {
max-width: 1200px;
margin: auto;
padding: 30px 20px 0;
}

/* ===== DESKTOP ===== */
.hero-content {
display: grid;
grid-template-columns: 65% 35%;
gap: 30px;
align-items: start;
}

/* LEFT TEXT */
.hero-left {
display: flex;
flex-direction: column;
align-items: flex-start;
}

/* IMAGE */
.hero-image {
display: flex;
justify-content: flex-end;
}

.hero-image img {
  max-width: 330px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ELEMENTS ===== */

.hero-badge {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background: #bfdcc2;
    color: #2f612f;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 16px; /* increased */
    border: 1px solid #cfdccf;
}

.hero-heading {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.25; /* slightly more breathing */
    margin: 0 0 14px 0; /* increased */
}

.highlight {
    color: #b56700;
}

.hero-subtext {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.5; /* more readable */
    margin: 10px 0 28px 0; /* increased */
    color: #000;
}

.hero-cta {
display: inline-block;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-size: 18px;
background: #3f9142;
color: #ffffff;
padding: 16px 34px;
border-radius: 6px;
text-decoration: none;
border: 1px solid rgba(0,0,0,0.1);
box-shadow: 0 3px 0 rgba(0,0,0,0.2);
transition: all 0.2s ease;
width: fit-content;
}

.hero-cta:hover {
background: #367f38;
transform: translateY(-1px);
}

.hero-cta:active {
transform: translateY(1px);
box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}


/* ===== TABLET ===== */
@media (max-width: 1024px) {

    .hero {
        padding: 60px 0; /* balanced vertical space */
    }

    .hero-container {
        padding: 0 40px; /* FIX: adds breathing space on right */
    }

    .hero-content {
        display: grid;
        grid-template-columns: 60% 40%;
        column-gap: 30px;
        align-items: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero-badge {
        margin-bottom: 14px;
    }

    .hero-heading {
        font-size: 34px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-subtext {
        font-size: 20px;
        line-height: 1.45;
        margin: 14px 0 18px;
    }

    .hero-cta {
        width: auto;
    }

    .hero-image {
        display: flex;
        justify-content: flex-end;
        padding-right: 10px; /* extra safety spacing */
        margin-top: 20px;
    }

    .hero-image img {
     max-width: 280px;
     width: 100%;
     height: auto;
     }

}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .hero {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    /* allow children to reorder */
    .hero-left {
        display: contents;
    }

    /* ORDER */
    .hero-badge {
        order: 1;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .hero-heading {
    order: 2;
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 6px;
    width: 95vw;
    max-width: 500px;
    text-align: left;
}

    .hero-image {
        order: 3;
        margin: 10px 0;
    }

    .hero-image img {
    max-width: 290px;
    margin: 6px 0;
    width: 100%;
    height: auto;
    }

    .hero-subtext {
        order: 4;
        font-size: 18px;
        line-height: 1.4;
        margin: 6px 0 8px;
        max-width: 400px;
    }

    .hero-cta {
    order: 5;
    width: 90%;
    max-width: 320px;
    margin-top: 4px;
    font-size: 18px;
    padding: 14px 28px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
}

/* ========================== TESTIMONIALS ========================== */

/* ===== SECTION ===== */
.testimonials {
    background: #f5f5f5;
    padding: 100px 20px 60px;
    text-align: center;
}

/* HEADING */
.testimonials-heading {
    font-size: 36px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    margin: 0 auto 10px;
    max-width: 800px;
}

.testimonials-subheading {
    color: #1b5e20;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 70px;
}

/* ===== ROW 1 ===== */
.testimonials-row1 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    align-items: start;
    justify-content: center;
    max-width: 950px;
    margin: 0 auto 50px;
}

/* LEFT BIG IMAGE (NO BOX) */
.testimonial-card.big {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.testimonial-card.big img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

/* RIGHT SIDE STACK */
.testimonial-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== ROW 2 ===== */
.testimonials-row2 {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: start; /* IMPORTANT */
    gap: 30px;
}

/* ===== CARD (MAIN) ===== */
.testimonial-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* IMAGE */
.testimonial-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* NAME */
.testimonial-card h3 {
    margin-top: 10px;
    margin-bottom: 3px;
    font-size: 18px;
    font-family: 'Roboto Slab', serif;
    color: #b46a00;
}

/* ROLE */
.testimonial-card span {
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {

    .testimonials {
        padding: 50px 20px;
    }

    .testimonials-heading {
        font-size: 30px;
    }

    .testimonials-subheading {
        margin-bottom: 50px;
    }

    /* ROW 1 */
    .testimonials-row1 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .testimonial-card.big img {
        margin-left: auto;
        margin-right: auto;
    }

    /* ROW 2 → 2 columns */
    .testimonials-row2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* CARD */
    .testimonial-card {
        max-width: 340px;
        transition: none;

    }

}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    /* SECTION */
    .testimonials {
        padding: 60px 14px 40px;
        text-align: center;
    }

    .testimonials-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .testimonials-subheading {
        font-size: 15px;
        margin-bottom: 50px;
    }

    /* STACK EVERYTHING */
    .testimonials-row1,
    .testimonials-row2 {
        display: flex;
        flex-direction: column;
        gap: 20px; /* SINGLE source of spacing */
        margin-bottom: 20px;
        align-items: center;
    }

    /* REMOVE INNER WRAPPER EFFECT */
    .testimonial-side {
        display: contents; /* removes double gap issue */
    }

    /* CARD */
    .testimonial-card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        box-sizing: border-box;
        text-align: center;
    }

    /* IMAGES */
    .testimonial-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
        margin: 0 auto;
    }

    /* BIG IMAGE */
    .testimonial-card.big img {
        margin: 0 auto;
    }

    /* NAME */
    .testimonial-card h3 {
        margin-top: 8px;
        margin-bottom: 2px;
        font-size: 16px;
        font-family: 'Roboto Slab', serif;
    }

    /* ROLE */
    .testimonial-card span {
        font-size: 14px;
        line-height: 1.2;
        font-family: 'Open Sans', sans-serif;
    }

}

/* ========================== STORY SECTION ========================== */

.story-section {
    background-color: #f8f6f0;
    padding: 80px 0;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headline */
.story-headline {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 52px;
    text-align: center;
    margin-bottom: 50px;
}

/* Image */
.story-card {
    margin: 40px 0 70px;
    text-align: center;
}

.story-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.story-card-2 img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

/* Text */
.story-text {
    margin: 35px auto;
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    font-size: 25px;
    max-width: 790px;
    line-height: 40px;
    color: #000;
}

.story-text p {
    margin-bottom: 18px;
}

/* Highlight */
.story-section .highlight {
    background: linear-gradient(to top, #fff200 80%, transparent 20%);
    color: #000;
    padding: 2px 6px;
}

/* Bold */
.story-text strong {
    font-weight: 600;
}

/* Bullet list */
.story-text ul {
    list-style: none;
    padding-left: 0;
    margin: 5px 0;
}

.story-text ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
    line-height: 28px;
}

/* Green ripple dot */
.story-text ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 14px;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: ripple 1.8s infinite;
}

/* Ripple animation */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Default (desktop) */
.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }
}

/* ================= TABLET (up to 1024px) ================= */
@media (max-width: 1024px) {

    .story-container {
        max-width: 920px; /* slightly more breathing space */
    }

    .story-headline {
        font-size: 34px;
        line-height: 44px;
    }

    .story-text {
        max-width: 720px; /* was 680 → felt slightly tight */
        margin: 30px auto;
        font-size: 22px;
        line-height: 34px;
    }

    .story-text p {
        margin-bottom: 14px; /* tighter reading flow */
    }

    .story-text ul li {
        line-height: 30px;
        margin-bottom: 4px; /* reduces extra vertical gaps */
    }
}

/* ================= MOBILE (up to 768px) ================= */
@media (max-width: 768px) {

    .story-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .story-headline {
        font-size: 22px;
        line-height: 38px;
    }

    .story-text {
        max-width: 100%;
        margin: 25px auto;
    }

    .story-text,
    .story-text p,
    .story-text ul li {
        font-size: 18px;
        line-height: 28px;
    }

    .story-text ul li {
        padding-left: 20px;
    }

    .story-card img {
        max-width: 100%;
    }
}

/* ========================== CONSEQUENCES ========================== */

/* ================= SECTION ================= */
.consequences-section {
    background-color: #f8f6f0;
    padding: 20px 0 40px;
}

/* ================= CONTAINER ================= */
.consequences-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= MAIN HEADING ================= */
.consequences-heading {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 50px;
    margin-top: 0;
}

/* ================= WRAPPER ================= */
.consequences-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ================= CARD ================= */
.consequences-card {
    background: #e5dfd6;
    border-radius: 18px;
    padding: 50px 60px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* ================= SUBHEADING ================= */
.consequences-subheading {
    text-align: center;
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    color: #b91c1c;
    margin-bottom: 35px;
}

/* ================= LIST ================= */
.consequences-list {
    max-width: 720px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

/* ================= LIST ITEM ================= */
.consequences-list li {
    position: relative;
    padding-left: 28px;
    font-family: 'Roboto Slab', serif;
    font-size: 21px;
    line-height: 32px;
    margin-bottom: 22px;
}

/* ================= RED CHECK ================= */
.consequences-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: #b91c1c;
    font-size: 16px;
}

/* Subtle emphasis for key phrases inside consequence points */
.emphasis {
    font-weight: 600;
    color: #1f2937; /* subtle darker tone */
}

/* making the main headline better */	
.consequences-highlight {
    font-weight: 700;
    color: #111;
    border-bottom: 2px solid #e5b4b4;
    padding-bottom: 2px;
}

/* ================= Tablet ================= */
@media (max-width: 1024px) {

    .consequences-container {
        max-width: 920px;
    }

    .consequences-card {
        padding: 40px;
    }

    .consequences-list li {
        font-size: 19px;
        line-height: 30px;
    }
}

/* ================= Mobile ================= */
@media (max-width: 768px) {

    .consequences-heading {
        font-size: 24px;
        line-height: 36px;
    }

    .consequences-card {
        padding: 30px 20px;
    }

    .consequences-subheading {
        font-size: 20px;
    }

    .consequences-list li {
        font-size: 17px;
        line-height: 26px;
    }
}

/* ========================== PROBLEM SECTION ========================== */

.problem-section {
    background-color: #f8f6f0;
    padding: 80px 0;
}

/* Paragraph spacing */
.problem-section .story-text:first-of-type {
    margin-top: 0;
    margin-bottom: 50px;
}

/* FLOW */
.problem-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin: 110px auto 100px;  /* updated top spacing */
    flex-wrap: wrap;
}

/* CARD */
.mistake {
    width: 260px;
    display: flex;
    flex-direction: column;
    border: 2px solid #111;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

/* HEADER */
.mistake-header {
    padding: 10px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    font-family: 'Roboto Slab', serif;
}

/* COLORS */
.blue .mistake-header { background: #93c5fd; }
.brown .mistake-header { background: #d4a373; }
.red .mistake-header { background: #fca5a5; }

/* CONTENT */
.mistake-content {
    flex-grow: 1;
    padding: 18px;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    font-family: 'Roboto Slab', serif;
}

/* ARROW */
.arrow {
    font-size: 26px;
    color: #555;
    display: flex;
    align-items: center;
}

/* CYCLE */
.cycle-arrow {
    margin-left: 6px;
    font-size: 18px;
    color: #b91c1c;
}

.problem-emphasis {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;

    margin: 50px auto 25px;   /* 👈 bring back auto */
    max-width: 790px;         /* match your text width */
}

/* highlight */
.problem-highlight {
    background: linear-gradient(to top, #fff200 80%, transparent 20%);
    color: #000;
    padding: 2px 6px;
}

/* ================= TABLET (up to 1024px) ================= */
@media (max-width: 1024px) {

    .problem-section {
        padding: 70px 0;
    }

    .problem-section .story-text {
        font-size: 22px;
        line-height: 34px;
        max-width: 720px;
        margin: 25px auto;
    }

    .problem-flow {
        justify-content: center;
        gap: 16px;
        margin: 50px auto 50px;
    }

    .mistake {
        width: 240px;
    }

    .mistake-header {
        font-size: 17px;
    }

    .mistake-content {
        font-size: 17px;
        line-height: 28px;
        padding: 16px;
    }

    .arrow {
        font-size: 24px;
    }
}


/* ================= MOBILE (up to 768px) ================= */
@media (max-width: 768px) {

    /* Container */
    .story-container {
        max-width: 100%;
        padding: 0 16px;
    }

    /* Paragraph */
    .problem-section .story-text {
        font-size: 18px;
        line-height: 28px;
        margin: 15px auto;
    }

    .problem-section .story-text p {
        margin-bottom: 10px;
    }

    .problem-section .story-text:last-of-type {
        margin-bottom: 0;
    }

    /* Emphasis headline (FIXED) */
    .problem-emphasis {
        font-size: 22px;
        line-height: 32px;
        margin: 30px auto 16px;
        max-width: 100%;
    }

    /* Flow layout */
    .problem-flow {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 30px auto 40px;
    }

    /* Cards */
    .mistake {
        width: 100%;
        max-width: 340px;
    }

    /* Header */
    .mistake-header {
        font-size: 16px;
        padding: 10px;
    }

    /* Content */
    .mistake-content {
        font-size: 16px;
        line-height: 26px;
        padding: 14px;
    }

    /* Arrow */
    .arrow {
        transform: rotate(90deg);
        font-size: 28px;
        color: #555;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        margin: -6px 0;
    }

    /* Cycle */
    .cycle-arrow {
        font-size: 15px;
    }
}

/* ========================== RESULTS SECTION ========================== */

.results-section {
    background-color: #f8f6f0;
    padding: 40px 0;
}

/* Headline */
.results-headline {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 52px;
    text-align: center;
    margin-bottom: 8px;
}

/* Subheading */
.results-subheading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1b5e20;
    text-align: center;
    margin: 0 0 70px;
}

/* List */
.results-list {
    max-width: 750px;
    margin: 20px auto 60px;  /* added top spacing */
    padding: 0;
    list-style: none;
}

.results-list li {
    position: relative;
    padding-left: 34px;
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 22px;
}

/* SVG Check Icon (clean scalable version) */
.results-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;

    width: 20px;
    height: 20px;

    background-color: #16a34a;

    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

    -webkit-mask-size: contain;

    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

    mask-size: contain;
}

/* Image */
.results-image {
    text-align: center;
    margin: 50px 0 70px;
}

.results-image img {
    max-width: 650px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* CTA */
.results-cta {
    text-align: center;
    margin-top: 70px;
}

.results-button {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;

    background: #3f9142;
    color: #ffffff;

    padding: 16px 34px;
    border-radius: 6px;
    text-decoration: none;

    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 3px 0 rgba(0,0,0,0.2);

    transition: all 0.2s ease;
}

.results-button:hover {
    background: #367f38;
    transform: translateY(-1px);
}

.results-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* ================= Tablet ================= */
@media (max-width: 1024px) {

    .results-list li {
        font-size: 20px;
        line-height: 32px;
    }

}

/* ================= Mobile ================= */
@media (max-width: 768px) {

    .results-section {
        padding: 30px 0;
    }

    .results-headline {
        font-size: 24px;
        line-height: 36px;
    }

    .results-subheading {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .results-list li {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    .results-image img {
        max-width: 340px;
    }

    .results-button {
        font-size: 18px;
        padding: 12px 24px;
    }
}

/* ========================== LOOP SECTION ========================== */


.loop-section {
  padding: 40px 0;
}

/* HEADINGS (match results) */
.loop-heading,
.comparison-heading {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 70px;
  margin-top: 20px;
}

/* ================= PART 1 ================= */

.loop-flow {
  text-align: center;
  max-width: 750px;
  margin: 20px auto 100px;
}

.loop-step {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  line-height: 34px;
  margin: 18px 0;
}

.loop-arrow {
  font-size: 20px;
  margin: 6px 0;
}

/* ================= PART 2 ================= */

.comparison-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

/* CARD */
.comparison-box {
  width: 260px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

/* LEFT */
.comparison-a {
  background: #fff5f5;
  border: 1px solid #f0dada;
}

/* RIGHT */
.comparison-b {
  background: #f5fff7;
  border: 1px solid #d8f0dc;
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
}

/* HEADER */
.comparison-header {
  margin-bottom: 12px;
}

.comparison-label {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 14px;
}

.comparison-box h3 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 12px;
}

/* TABLE */
.comparison-table {
  margin-top: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 6px;
  border-bottom: 1px solid #ececec;
}

.table-row:last-child {
  border-bottom: none;
}

/* COLUMNS */
.col-day {
  width: 40%;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #666;
}

.col-status {
  width: 60%;
  text-align: right;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-left: 1px solid #f1f1f1;
  padding-left: 10px;
}

/* NEGATIVE */
.table-row.not-study .col-status {
  color: #e53935;
  font-weight: 600;
}

/* ARROW */
.comparison-arrow {
  font-size: 26px;
  color: #2e7d32;
}

/* FOOTER */
.comparison-footer {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-top: 25px;
}

/* ================= CTA ================= */

.loop-cta {
  text-align: center;
  margin-top: 60px;
}

.loop-button {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;

  background: #3f9142;
  color: #ffffff;

  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none;

  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 0 rgba(0,0,0,0.2);

  transition: all 0.2s ease;
}

.loop-button:hover {
  background: #367f38;
  transform: translateY(-1px);
}

.loop-button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* ================= TABLET ================= */

@media (max-width: 1024px) and (min-width: 769px) {

  .loop-heading,
  .comparison-heading {
    font-size: 28px;
    line-height: 40px;
  }

  .loop-flow {
    margin: 20px auto 80px;
  }

  .loop-step {
    font-size: 20px;
    line-height: 32px;
  }

  .comparison-wrapper {
    gap: 30px;
  }

  .comparison-box {
    width: 240px;
    padding: 18px;
  }

  .comparison-box h3 {
    font-size: 20px;
  }

  .col-day,
  .col-status {
    font-size: 14px;
  }

  .comparison-arrow {
    font-size: 24px;
  }

  .comparison-footer {
    font-size: 17px;
  }

  .loop-cta {
    margin-top: 50px;
  }

}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .loop-heading,
  .comparison-heading {
    font-size: 24px;
    line-height: 36px;
  }

  .loop-flow {
    margin: 20px auto 50px;
  }

  .loop-step {
    font-size: 18px;
    line-height: 28px;
  }

  .comparison-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .comparison-arrow {
    transform: rotate(90deg);
    font-size: 22px;
  }

  .comparison-box {
    width: 100%;
    max-width: 300px;
    padding: 18px;
  }

  .comparison-box h3 {
    font-size: 18px;
  }

  .col-day,
  .col-status {
    font-size: 13px;
  }

  .comparison-footer {
    font-size: 16px;
  }

  .loop-cta {
    margin-top: 40px;
  }

  .loop-button {
    font-size: 18px;
    padding: 12px 24px;
  }

}

/* ========================== WHO SECTION ========================== */


.who {
  background-color: #f3f1ea;
  padding: 120px 20px 100px;
  text-align: center;
  position: relative;
}

/* CURVE */

.who-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.who-curve svg {
  width: 100%;
  height: 100px;
  display: block;
}

/* CONTAINER */

.who-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* HEADING */

.who-heading {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  line-height: 52px;
  margin-bottom: 20px;
}

/* SUBHEADING */

.who-subheading {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #2f6f2f;
  font-weight: 600;
  margin-bottom: 10px;
}

/* LIST */

.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

/* 🔥 THIS IS YOUR GAP FIX */

.who-list li:first-child {
  margin-top: 50px;
}

/* LIST ITEMS */

.who-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 38px;
  font-family: 'Roboto Slab', serif;
}

/* CHECK ICON */

.who-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* 👈 centers vertically */

  width: 20px;
  height: 20px;
  background: #065f46;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

  .who {
    padding: 100px 20px 80px;
  }

  .who-curve svg {
    height: 70px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .who {
    padding: 80px 16px 60px;
  }

  .who-heading {
    font-size: 24px;
    line-height: 34px;
  }

  .who-subheading {
    font-size: 16px;
  }

 .who-list li {
  font-size: 18px;
  line-height: 28px;
}

  /* 🔥 MOBILE GAP */

  .who-list li:first-child {
    margin-top: 50px;
  }

  .who-curve svg {
    height: 45px;
  }

	.who-list li::before {
    top: 4px;              /* 👈 aligns with first line */
    transform: none;       /* remove centering */
  }

}

/* ========================== WHY DIFFERENT ========================== */


.why-different {
  background-color: #f2f0e9 !important;
  padding: 80px 0 0;
  position: relative;
 
  box-shadow: 0 -20px 40px rgba(0,0,0,0.03);
}

.why-different-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* HEADING */

.why-different-heading {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 10px;
}

/* SUBHEADING */

.why-different-subheading {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1b5e20;
  text-align: center;
  margin-bottom: 60px;
}

/* TEXT SYSTEM */

.why-different-intro,
.why-list li,
.why-different-middle,
.why-different-end {
  font-family: 'Roboto Slab', serif;
  font-size: 25px;
  line-height: 38px;
}

/* LISTS */

.why-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
}

.why-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
}

/* RED LIST */

.why-list-red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background-color: #dc2626;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* GREEN LIST */

.why-list-green li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background-color: #16a34a;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

/* MIDDLE */

.why-different-middle {
  margin: 30px 0 10px;
}

/* END TEXT */

.why-different-end {
  margin-top: 30px;
  margin-bottom: 110px;
}

.why-different-end p {
  margin-bottom: 24px;
}


/* ================= DIVIDER ================= */

.why-different-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: 0;
}

.why-different-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.why-different-divider path {
  fill: #eee7dc;
}

.why-different-end {
  margin-top: 70px;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

  .why-list li,
  .why-different-intro,
  .why-different-end {
    font-size: 20px;
    line-height: 32px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .why-different {
    padding: 60px 0 0;
  }

  .why-different-container {
    padding: 0 16px;
  }

  /* HEADING */
  .why-different-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 10px;
  }

  /* SUBHEADING */
  .why-different-subheading {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
  }

  /* TEXT SYSTEM */
  .why-different-intro,
  .why-list li,
  .why-different-end {
    font-size: 18px;
    line-height: 28px;
  }

  /* LIST SPACING */
  .why-list {
    margin: 15px 0 30px;
  }

  .why-list li {
    margin-bottom: 16px;
    padding-left: 30px;
  }

  /* MIDDLE LINE (FIXED) */
  .why-different-middle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 25px 0 15px;
}

  /* END TEXT */
  .why-different-end {
    margin-top: 40px;
    
  }

  .why-different-end p {
    margin-bottom: 16px;
  }

  /* DIVIDER */
  .why-different-divider svg {
    height: 60px;
  }

}

/* ========================== TEASER SECTION ========================== */

/* ================= TEASER ================= */

.teaser {
  background-color: #eee7dc;
  padding: 75px 0;
}

.teaser-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADINGS ================= */

.teaser-title,
.teaser-highlight-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 20px;
}

.teaser-title {
	margin-bottom: 70px;
}

.teaser-highlight-title {
  margin-top: 150px;
}

.teaser-highlight-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1b5e20;
  text-align: center;
  margin-bottom: 50px;
}

/* ================= TEXT ================= */

.teaser-intro,
.teaser-body,
.teaser-list li {
  font-family: 'Roboto Slab', serif;
  font-size: 25px;
  line-height: 38px;
}

.teaser-label {
  font-size: 25px;
  line-height: 38px;
  font-family: 'Roboto Slab', serif;
  margin: 30px 0 10px;
}

.teaser-intro {
  margin-bottom: 20px;
}

.teaser-label {
  margin: 30px 0 10px;
}

.teaser-body {
  margin-top: 30px;
}

.teaser-body p {
  margin-bottom: 24px;
}

/* ================= LIST ================= */

.teaser-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
}

.teaser-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
}

/* ================= PRIMARY (GREEN CHECK) ================= */

.teaser-green li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 20px;
  height: 20px;

  background-color: #16a34a;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: contain;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  mask-size: contain;
}

/* ================= SECONDARY (DARK ARROW) ================= */

.teaser-arrow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 20px;
  height: 20px;

  background-color: #374151; /* 👈 only color changed */

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: contain;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  mask-size: contain;
}

/* ================= HIGHLIGHT (RED CHECK) ================= */

.teaser-red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 20px;
  height: 20px;

  background-color: #dc2626;

  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  -webkit-mask-size: contain;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm5.676,8.237-6,5.5a1,1,0,0,1-1.383-.03l-3-3a1,1,0,1,1,1.414-1.414l2.323,2.323,5.294-4.853a1,1,0,1,1,1.352,1.474Z'/%3E%3C/svg%3E") no-repeat center;

  mask-size: contain;
}

/* ================= CTA ================= */

.teaser-cta {
  text-align: center;
  margin-top: 100px;
}

.teaser-button {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 40px;

  background: #3f9142;
  color: #ffffff;

  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none;

  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 3px 0 rgba(0,0,0,0.2);

  transition: all 0.2s ease;
}

.teaser-button:hover {
  background: #367f38;
  transform: translateY(-1px);
}

.teaser-button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

  .teaser-list li,
  .teaser-intro,
  .teaser-body {
    font-size: 20px;
    line-height: 32px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .teaser {
    padding: 60px 0;
  }

  .teaser-title,
  .teaser-highlight-title {
    font-size: 24px;
    line-height: 36px;
  }

  .teaser-highlight-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .teaser-list li,
  .teaser-intro,
  .teaser-body {
    font-size: 18px;
    line-height: 28px;
  }

.teaser-label {
    font-size: 18px;
    line-height: 28px;
  }

}

/* ============================= BONUS SECTION ======================== */


.bonus-section {
    padding: 110px 20px;
    text-align: center;
    background:
        radial-gradient(circle, rgba(160,140,58,0.18) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #f0ebe0 0%, #e6dccb 100%);
    background-size: 22px 22px, cover;
}

/* === HEADING ====== */

.bonus-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    font-weight: 700;
    color: #3b2a1a;
    margin-bottom: 70px;
}

/* ===== WRAPPER ===== */

.bonus-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== CARD ===== */

.bonus-card {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 32px 36px;
    margin-bottom: 30px;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 14px 35px rgba(0,0,0,0.10),
        0 2px 6px rgba(0,0,0,0.05);

    text-align: left;
    transition: all 0.25s ease;
}

/* hover */

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.14),
        0 4px 10px rgba(0,0,0,0.08);
}

/* === CONTENT === */

.bonus-content {
    max-width: 80%;
}

/* === LABEL ===== */

.bonus-label {
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 700;
    color: #7a5a2f;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* ====== TITLE ==== */

.bonus-title {
    font-family: 'Roboto Slab', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* ===== DESCRIPTION ===== */

.bonus-description {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    line-height: 28px;
    color: #555;
}

/* === VALUE ===== */

.bonus-value {
    flex-shrink: 0;
    align-self: flex-start;

    font-family: 'Lora', serif;
    font-size: 13px;
    font-weight: 700;
    color: #a08c3a;

    background: #ffffff;
    border: 2px solid #a08c3a;

    padding: 6px 16px;
    border-radius: 30px;
}

.bonus-section {
    position: relative;
}

/* SMOOTH FADE OUT */
.bonus-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;

    background: linear-gradient(
        to bottom,
        rgba(240,235,224,0) 0%,
        rgba(240,235,224,0.4) 40%,
        rgba(230,220,203,0.9) 70%,
        rgba(230,220,203,1) 100%
    );

    pointer-events: none;
}

/* === MOBILE ==== */

@media (max-width: 768px) {

    .bonus-card {
        flex-direction: column;
    }

    .bonus-content {
        max-width: 100%;
    }

    .bonus-value {
        margin-top: 12px;
    }

    .bonus-heading {
        font-size: 30px;
    }

    .bonus-title {
        font-size: 20px;
    }

    .bonus-description {
        font-size: 15px;
    }
}

/* ========================== HOW IT WORKS ========================== */


.how-section {
    padding: 80px 20px 120px;
    text-align: center;

    background:
        radial-gradient(circle, rgba(160,140,58,0.12) 1px, transparent 1px),
        linear-gradient(
            to bottom,
            #e6dccb 0%,
            #d2c2a8 40%,
            #5a2f16 100%
        );

    background-size: 22px 22px, cover;
}

/* ==== CONTAINER ===== */

.how-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== HEADING ==== */

.how-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    font-weight: 700;

    color: #3b2a1a; /* deep brown (matches numbers) */
    margin-top: 0;
    margin-bottom: 90px;
}

/* ===== STEPS ===== */

.how-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* ====== CARD ====== */

.how-step {
    position: relative;
    flex: 1;

    background: #ffffff;
    border-radius: 16px;

    padding: 50px 25px 30px;
    text-align: center;

    box-shadow: 0 15px 35px rgba(0,0,0,0.15);

    transition: all 0.25s ease;
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* ======= NUMBER ====== */

.how-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: #3b2a1a;
    color: #ffffff;

    font-family: 'Roboto Slab', serif;
    font-size: 26px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ====== TITLE ====== */

.how-step h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* ===== DESCRIPTION ===== */

.how-step p {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 24px;
    color: #555;
}

/* ===== MOBILE ====== */

@media (max-width: 768px) {

    .how-steps {
        flex-direction: column;
        gap: 60px; /* main spacing */
    }
	
	.how-heading {
        font-size: 30px;
        line-height: 36px;
    }

    .how-step {
        padding: 65px 20px 35px;
    }

    .how-number {
        top: -32px; /* gives breathing space */
    }

}

/* ========================== UNSURE SECTION ========================== */


.unsure {
  background-color: #f3f1ea;
  padding: 120px 0 80px;
}

.unsure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADING */

.unsure-heading {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 100px;
}

/* TEXT */

.unsure-content {
  margin: 35px auto;
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 25px;
  max-width: 790px;
  line-height: 40px;
  color: #000;
}

/* spacing between lines */

.unsure-content br {
  display: block;
  margin-bottom: 14px;
}

.unsure-content strong {
  font-weight: 600;
}

.unsure-highlight {
  background: #fde047;
  padding: 3px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.unsure-content em {
  font-style: italic;
  opacity: 0.9;
}

/* ===== TABLET ====== */

@media (max-width: 1024px) {

  .unsure-heading {
    font-size: 34px;
    line-height: 44px;
  }

  .unsure-content {
    max-width: 720px;
    font-size: 22px;
    line-height: 34px;
  }

}

/* ===== Mobile ==== */

@media (max-width: 768px) {

  .unsure {
    padding-top: 50px;
  }

  .unsure-container {
    padding: 0 16px;
  }

  .unsure-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 60px;
  }

  .unsure-content {
    font-size: 18px;
    line-height: 28px;
  }

  .unsure-content br {
    margin-bottom: 10px;
  }

}


/* ========================== PRICING SECTION ========================== */


.pricing-section {
  background: #f8f6f0;
  padding: 100px 20px;
  text-align: center;
}

.pricing-value {
  font-family: 'Roboto Slab', serif;
  font-size: 26px;
  line-height: 38px;
  max-width: 760px;
  margin: 0 auto 60px;
}

.currency {
  font-size: 0.9em;
  position: relative;
  top: -2px;
}

/* BOX */

.pricing-box {
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(135deg, #bbf7d0, #4ade80);
  padding: 45px 35px;
  border-radius: 18px;
}

/* PRICE */

.pricing-main h2 {
  font-size: 48px;
  margin: 8px 0;
}

.pricing-compare {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 25px;
}

/* BONUS */

.pricing-bonus {
  display: block;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 25px;
}

/* TOOLS */

.pricing-tools {
  text-align: left;
  margin: 0 auto 30px;
}

.pricing-tools ul {
  list-style: none;
  padding: 0;
}

.pricing-tools li {
  margin-bottom: 14px;
  padding-left: 34px;
  position: relative;
  line-height: 1.7;
  font-size: 16px;
}

.pricing-value {
  font-family: 'Roboto Slab', serif;
}

.pricing-main h2 {
  font-family: 'Roboto Slab', serif;
}

.pricing-tools,
.pricing-bonus,
.pricing-trust {
  font-family: 'Open Sans', sans-serif;
}

/* CIRCLE for TICK */

.pricing-tools li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* 👈 align with first line */
  width: 18px;
  height: 18px;
  background: #065f46;
  border-radius: 50%;
}


/* PERFECTLY CENTERED WHITE TICK */

.pricing-tools li::after {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px; /* same as circle */
  width: 18px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

/* BUTTON */

.pricing-btn {
  position: relative;
  overflow: hidden;
  display: block;
  background: #065f46;
  color: #fff;
  padding: 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

/* SHIMMER LAYER */

.pricing-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  transform: skewX(-20deg);
}

/* HOVER ANIMATION */

.pricing-btn:hover::before {
  animation: shimmer 0.8s ease;
}

/* KEYFRAMES */

@keyframes shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* TRUST */

.pricing-trust {
  margin-top: 12px;
  font-size: 13px;
}

/* MOBILE */

@media (max-width: 768px) {

  .pricing-value {
    font-size: 20px;
    line-height: 30px;
  }

  .pricing-main h2 {
    font-size: 36px;
  }

}

/* ========================== FAQ SECTION ========================== */

.faq {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADING */

.faq-heading {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 60px;
}

/* ITEM */

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

/* QUESTION */

.faq-question {
  width: 100%;
  text-align: left;
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  padding: 18px 40px 18px 0; /* space for icon */
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

/* ICON */

.faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.2s ease;
}

/* ANSWER */

.faq-answer {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #555;
  padding-bottom: 20px;
  line-height: 1.6;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: translateY(-50%) rotate(45deg);
}

/* ======= TABLET ==== */

@media (max-width: 1024px) {

  .faq-heading {
    font-size: 30px;
  }

  .faq-question {
    font-size: 18px;
  }

}

/* ==== MOBILE ==== */

@media (max-width: 768px) {

  .faq-container {
    padding: 0 16px;
  }

  .faq-heading {
    font-size: 24px;
    line-height: 36px
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 17px;
    padding: 16px 35px 16px 0;
  }

  .faq-answer {
    font-size: 14px;
  }

}

/* ========================== POST SCRIPT ========================== */

.ps {
  background-color: #f8f6f0;
  padding: 80px 0;
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADLINE */

.ps-heading {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 100px;

  text-decoration: none;
}

/* CONTENT */

.ps-content {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 40px;
  color: #000;
  max-width: 790px;
  margin: 0 auto;
}

.ps-content p {
  margin-bottom: 18px;
  text-align: left;
}

/* ====== PS HIGHLIGHT ====== */

.ps-highlight {
  background-color: #fff200;
  padding: 2px 6px;
}

/* ===== TABLET (up to 1024px) === */

@media (max-width: 1024px) {

  .ps-container {
    max-width: 920px;
  }

  .ps-heading {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 80px; /* slightly reduced from desktop */
  }

  .ps-content {
    max-width: 720px;
    font-size: 22px;
    line-height: 34px;
  }

  .ps-content br {
    margin-bottom: 10px;
  }

}


/* ====== MOBILE (up to 768px) ====== */

@media (max-width: 768px) {

  .ps-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .ps-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 60px;
  }

  .ps-content {
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .ps-content br {
    margin-bottom: 8px;
  }

}