/* Reset */
*, *:before, *:after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 13pt; }
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* Fonts */
body {
    font-family: 'Wix Madefor Text', sans-serif;
    background-color: #FAF0F0;
    color: #302C25;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Wrapper */
#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

/* ── Logo Section (style5) ─────────────────────────── */
.section-logo {
    background-color: #93B584;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.75rem 5.125rem;
}

.section-logo .logo-image img {
    max-height: 60px;
    width: auto;
}

/* ── Hero Section (style4) ─────────────────────────── */
.section-hero {
    position: relative;
    width: 100%;
    min-height: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
    overflow: hidden;
    background-image: url('/images/hero-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(94, 92, 89, 0.38), rgba(94, 92, 89, 0.05));
}

.section-hero .wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 4rem;
    text-align: center;
}

.hero-heading {
    font-family: 'Gloock', serif;
    font-size: 1.75em;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-family: 'Wix Madefor Text', sans-serif;
    font-size: 1em;
    color: #FFFFFF;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.875;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    background-color: #FFFFFF;
    color: #F25C5C;
    height: 3.375rem;
    line-height: 3.375rem;
    padding: 0 1.6875rem;
    border-radius: 2.5rem;
    font-family: 'Wix Madefor Text', sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
    white-space: nowrap;
}

.btn-cta svg {
    fill: #F25C5C;
    width: 1em;
    height: 1em;
    min-width: 16px;
    margin-left: 0.625rem;
    flex-shrink: 0;
    align-self: center;
}

.btn-cta:hover {
    transform: scale(0.94);
    text-decoration: none;
}

/* ── Pain Points Section (style2) ─────────────────────── */
.section-pain {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.64rem 0;
    margin-top: 6rem;
    border-top: 1px dotted #E3D8C8;
}

.section-pain .wrapper {
    max-width: 815px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-heading {
    font-family: 'Gloock', serif;
    font-size: 1.75rem;
    color: #302C25;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.pain-list ul li {
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(94, 92, 89, 0.2);
}

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

.pain-list ul li p {
    font-size: 1em;
    color: #302C25;
    line-height: 1.5;
}

/* ── Beta Signup Section (style1) ─────────────────────── */
.section-beta {
    background-color: #61934B;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.875rem 4rem;
    border-top: 1px dotted #E3D8C8;
}

/* Beta1 (before steps): has a 6rem gap before it, matching the live site's spacing */
#container12.section-beta {
    margin-top: 6rem;
}

/* Beta2 (after steps, anchor): matches live's footer-area signup section height */
#contact.section-beta {
    padding: 5.9rem 4rem;
}

.section-beta .wrapper {
    width: 100%;
}

.section-beta .form-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 815px;
    margin: 0 auto;
}

.section-beta .form-field {
    flex: 1;
    min-width: 200px;
}

.section-beta .form-field input[type="email"],
.section-beta .form-field input[type="text"] {
    font-family: 'Wix Madefor Text', sans-serif;
    font-size: 1em;
    font-weight: 400;
    height: 3.375rem;
    padding: 0 1.18125rem;
    line-height: calc(3.375rem - 2px);
    border: solid 1px #FFFFFF;
    border-radius: 2.5rem;
    background-color: #FFFFFF;
    color: #302C25;
    width: 100%;
    outline: none;
    transition: border-color 0.25s ease;
}

.section-beta .form-field input::placeholder {
    color: rgba(48, 44, 37, 0.5);
}

.section-beta .form-actions button {
    font-family: 'Wix Madefor Text', sans-serif;
    font-size: 1em;
    font-weight: 400;
    display: inline-block;
    height: 3.375rem;
    line-height: 3.375rem;
    padding: 0 1.6875rem;
    background-color: #FFFFFF;
    color: #F25C5C;
    border: none;
    border-radius: 2.5rem;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
    white-space: nowrap;
}

.section-beta .form-actions button:hover {
    background-color: #F25C5C;
    color: #FFFFFF;
}

/* ── Steps Heading ─────────────────────────────────── */
.steps-heading {
    font-family: 'Gloock', serif;
    font-size: 1.75em;
    color: #302C25;
    text-align: center;
    line-height: 2.17;
    max-width: 815px;
    width: 100%;
    margin: 1.5rem auto 0;
    padding: 0;
}

/* ── Steps Section (style2 columns) ─────────────────── */
.section-step {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: 6rem;
}

.section-step .wrapper {
    max-width: 815px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section-step .inner.columns {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-image {
    flex: 1;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3.375rem 0 rgba(36, 24, 24, 0.22);
    display: block;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    font-family: 'Gloock', serif;
    font-size: 1.25em;
    color: #171212;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.step-content p {
    font-size: 1em;
    color: #302C25;
    line-height: 1.875;
}

/* ── Footer Section (style3) ─────────────────────────── */
.section-footer {
    background-color: #61934B;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.25rem 4rem;
}

.section-footer .wrapper {
    width: 100%;
    padding: 0 4rem;
}

.section-footer .inner.columns {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-footer h3 {
    font-family: 'Gloock', serif;
    font-size: 1.25rem;
    color: #171212;
    margin-bottom: 0.5rem;
}

.section-footer > .wrapper > .inner > div > p {
    font-size: 0.85rem;
    color: #E3D8C8;
    line-height: 1.6;
}

.flex-spacer { flex: 1; }

.footer-contact {
    text-align: right;
}

.footer-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.footer-icons li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 0.85rem;
}

.footer-icons li a svg {
    fill: #FFFFFF;
}

.footer-email a {
    color: #E3D8C8;
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: #E3D8C8;
    margin-top: 0.5rem;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    html { font-size: 10pt; }

    #main > .inner { padding: 2rem 1.5rem; }

    .section-logo { padding: 1rem 1.5rem; }

    .section-hero { padding: 3rem 1.5rem; min-height: auto; }

    .hero-heading { font-size: 1.6rem; }

    .section-pain { padding: 2rem 0; }
    .section-pain .wrapper { padding: 0 1.5rem; }

    .section-beta { padding: 2rem 1.5rem; }
    .section-beta .form-inner { flex-direction: column; align-items: stretch; }
    .section-beta .form-field input { min-width: unset; width: 100%; }

    .steps-heading { padding: 2rem 1.5rem 0; }
    .section-step .wrapper { padding: 0 1.5rem; }
    .section-step .inner.columns { flex-direction: column; }
    .step-image { width: 100%; }
    .step-image img { height: 200px; }

    .section-footer { padding: 3rem 1.5rem; }
    .section-footer .inner.columns { flex-direction: column; gap: 2rem; }
    .footer-contact { text-align: left; }
    .footer-icons { justify-content: flex-start; }
}
