/* :root {
    --bg: #fbf7f2;
    --dark: #1f1510;
    --brown: #a95f2f;

    --brown-2: #8f4f25;
    --cream: #efe5d9;

    --pink: #d9a3c8;
    --blue: #8fb6cc;
    --yellow: #f0c36c;

    --muted: rgba(0, 0, 0, .65);
    --muted-light: rgba(255, 255, 255, .75);

    --card: #fff;
    --shadow: 0 16px 40px rgba(0, 0, 0, .12);
    --shadow2: 0 20px 70px rgba(0, 0, 0, .22);

    --radius: 18px;
    --max: 1160px;
    --trans: 220ms ease;
} */
:root {
    --bg: #FDFEFE;
    --dark: #231F20;

    /* brand primary (logo teal) */
    --brown: #07B2AC;
    --brown-2: #058581;

    /* teal-tinted cream to match brand */
    --cream: #EAF7F6;

    /* keep your blobs vibe (slightly cleaner) */
    --pink: #E8C5D8;
    --blue: #A8C5D8;
    --yellow: #F4D19B;

    --muted: rgba(35, 31, 32, .68);
    --muted-light: rgba(255, 255, 255, .78);

    --card: #fff;
    --shadow: 0 16px 40px rgba(0, 0, 0, .12);
    --shadow2: 0 20px 70px rgba(0, 0, 0, .22);

    --radius: 18px;
    --max: 1160px;
    --trans: 220ms ease;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: #1a1a1a;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font-family: inherit
}

.wb-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
                   HEADER
                ========================== */

.wb-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 84px;
    padding: 0;
}

.wb-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.wb-nav__link {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 10px;
}

.wb-nav__link:hover {
    background: rgba(255, 255, 255, .10)
}

.wb-nav__link.is-active {
    background: rgba(255, 255, 255, .12)
}

.wb-nav__dropdown {
    position: relative
}

.wb-nav__dropbtn {
    background: transparent;
    border: 0;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wb-nav__dropbtn:hover {
    background: rgba(255, 255, 255, .10)
}

.wb-nav__chev {
    opacity: .9;
    font-size: 14px;
    transform: translateY(-1px);
}

.wb-nav__dropmenu {
    position: absolute;
    top: 52px;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
}

.wb-nav__dropmenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: #111;
}

.wb-nav__dropmenu a:hover {
    background: rgba(0, 0, 0, .06)
}

.wb-nav__dropdown:hover .wb-nav__dropmenu {
    display: block
}

.wb-header__cta {
    display: flex;
    gap: 10px;
    align-items: center
}

.wb-burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 0;
    background: rgba(255, 255, 255, .14);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.wb-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    display: block
}

/* =========================
                   BUTTONS
                ========================== */
.wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform var(--trans), background var(--trans), box-shadow var(--trans);
    cursor: pointer;
    white-space: nowrap;
}

.wb-btn--primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.wb-btn--secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .75)
}

.wb-btn--secondary:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px)
}

.wb-btn--sm {
    height: 44px;
    padding: 0 18px;
    font-size: 14px
}

/* Mobile CTA inside nav */
.wb-nav__mobile-cta {
    display: none;
    gap: 10px;
    margin-top: 10px;
}

/* =========================
                   HERO (MATCH SCREENSHOT)
                ========================== */
/* HERO ONLY */
.wb-hero {
    background: var(--brown);
    color: #fff;
    position: relative;
    overflow: hidden;

    /* if header is sticky, keep small padding;
                 if header is overlay/absolute, increase this to 140px */
    padding: 92px 0 110px;
}

.wb-hero__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* FIX: title spacing like screenshot */
.wb-hero__title {
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -0.02em;

    /* KEY FIXES */
    line-height: 1.06;
    /* was too tight */
    font-size: clamp(28px, 6.2vw, 60px);
}

.wb-u {
    display: inline-block;

    /* KEY FIXES */
    padding-bottom: 10px;
    /* creates space under underline */
    margin-bottom: 10px;
    /* creates space between lines */
    line-height: 1;
    /* keep underline neat */
    text-decoration: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: 12px;
    /* was small */
    text-decoration-color: rgba(255, 255, 255, .95);
}

/* small devices */
@media (max-width:520px) {
    .wb-u {
        padding-bottom: 8px;
        margin-bottom: 8px;
        text-decoration-thickness: 8px;
        text-underline-offset: 10px;
    }
}


.wb-hero__sub {
    width: min(860px, 92%);
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.9;
}

.wb-link {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.wb-hero__actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* buttons like screenshot */
.wb-btn--dark {
    background: #241813;
    border: 1px solid #241813;
    color: #fff;
    padding: 14px 28px;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .20);
}

.wb-btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    padding: 14px 28px;
    min-width: 280px;
    border-radius: 10px;
}

.wb-ext {
    margin-left: 10px;
    font-weight: 600;
}

/* blobs (exact corners feel) */
.wb-blob {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
    filter: saturate(1.02);
}

.wb-blob--yellow {
    width: 520px;
    height: 360px;
    left: -210px;
    bottom: -210px;
    background: var(--yellow);
}

.wb-blob--blue {
    width: 420px;
    height: 300px;
    right: -160px;
    top: -120px;
    background: var(--blue);
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
}

.wb-blob--pink {
    width: 480px;
    height: 340px;
    right: -210px;
    bottom: -230px;
    background: #e58df2;
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
}

/* responsive */
@media (max-width: 520px) {
    .wb-hero {
        padding: 70px 0 92px;
    }

    .wb-btn--dark,
    .wb-btn--outline {
        min-width: 100%;
    }

    .wb-u {
        text-decoration-thickness: 8px;
        text-underline-offset: 8px;
    }
}


/* underline each line thick (like screenshot) */
.wb-u {
    display: inline-block;
    text-decoration: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: 10px;
    text-decoration-color: rgba(255, 255, 255, .96);
}

.wb-hero__sub {
    width: min(840px, 92%);
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.85;
}

.wb-link {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.wb-hero__actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* hero buttons like screenshot */
.wb-btn--dark {
    color: #fff;
    background: #241813;
    border: 1px solid #241813;
    padding: 14px 26px;
    min-width: 250px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

.wb-btn--dark:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .22);
}

.wb-btn--outline {
    color: #fff;
    background: transparent;
    border: 1.8px solid rgba(255, 255, 255, .55);
    padding: 14px 26px;
    min-width: 250px;
}

.wb-ext {
    margin-left: 10px;
    font-weight: 600;
}

/* blobs positions like screenshot */
.wb-blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
    filter: saturate(1.02);
    pointer-events: none;
}

.wb-blob--yellow {
    width: 460px;
    height: 320px;
    left: -150px;
    bottom: -140px;
    background: var(--yellow);
}

.wb-blob--pink {
    width: 420px;
    height: 300px;
    right: -140px;
    bottom: -165px;
    background: #e58df2;
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
}

.wb-blob--blue {
    width: 460px;
    height: 310px;
    right: -180px;
    top: -120px;
    background: var(--blue);
    border-radius: 50% 50% 55% 45% / 55% 45% 55% 45%;
}

/* =========================
                   GALLERY STRIP
                ========================== */
.wb-gallery {
    background: var(--cream);
    padding: 22px 0 36px;
    overflow: hidden;
}

.wb-gallery__wrap {
    max-width: 1400px;
    margin: 0 auto
}

.wb-gallery__row {
    display: grid;
    grid-template-columns: 1.15fr 1.7fr 1.05fr;
    gap: 18px;
    align-items: stretch;
    padding: 0 18px;
    will-change: transform;
}

.wb-gallery__row--top {
    transform: translateX(-18vw)
}

.wb-gallery__row--bottom {
    margin-top: 18px;
    transform: translateX(-2vw);
}

.wb-media {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    background: #ddd;
    min-height: 250px;
}

.wb-media--sm {
    min-height: 210px
}

.wb-media--img {
    background-size: cover;
    background-position: center
}

.wb-media--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* =========================
                   SECTION HEADINGS
                ========================== */
.wb-section {
    padding: 76px 0
}

.wb-section__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 40px
}

.wb-h2 {
    margin: 0 0 12px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -.4px;
}

.wb-muted {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7
}

.wb-accent {
    position: relative
}

.wb-accent:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 140px;
    height: 8px;
    border-radius: 99px;
    background: rgba(169, 95, 47, .25);
}

/* =========================
                   STEPS (TABS LEFT + IMAGE RIGHT)
                ========================== */
.wb-steps {
    background: var(--bg)
}

.wb-steps__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    align-items: start;
}

.wb-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.wb-tab {
    text-align: left;
    border: 0;
    background: #fff;
    border-radius: 16px;
    padding: 16px 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans);
}

.wb-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12)
}

.wb-tab__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.wb-tab__title {
    font-weight: 600;
    font-size: 15px
}

.wb-tab__icon {
    font-size: 22px;
    transform: rotate(0deg);
    transition: transform var(--trans);
    opacity: .85
}

.wb-tab__body {
    margin-top: 10px;
    color: rgba(0, 0, 0, .65);
    font-size: 13px;
    line-height: 1.6;
    display: none
}

.wb-tab.is-active {
    outline: 2px solid rgba(169, 95, 47, .35);
}

.wb-tab.is-active .wb-tab__body {
    display: block
}

.wb-tab.is-active .wb-tab__icon {
    transform: rotate(90deg)
}

.wb-tabpanes {
    position: sticky;
    top: 104px;
}

.wb-pane {
    display: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.wb-pane.is-active {
    display: block
}

.wb-pane img {
    width: 100%;
    height: 460px;
    object-fit: cover
}

.wb-steps__cta {
    margin-top: 18px
}

.wb-steps__cta .wb-btn {
    width: 100%;
    justify-content: center;
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    padding: 14px 18px;
    border-radius: 14px;
}

.wb-steps__cta .wb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .20)
}

/* =========================
                   FEATURES (YOUR SECTION)
                   Match card size like screenshot
                ========================== */
.hiw-features {
    background: linear-gradient(180deg, #2a1a12 0%, #1b110c 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hiw-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.hiw-features-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 44px;
}

.hiw-title {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hiw-underline {
    text-decoration: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: 10px;
    text-decoration-color: rgba(240, 195, 108, 0.95);
}

.hiw-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.8;
}

.hiw-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* same card size */
.hiw-card {
    background: #fff;
    color: #111;
    border-radius: 18px;
    padding: 26px 26px 26px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    transition: transform var(--trans), box-shadow var(--trans);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .30)
}

.hiw-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(169, 95, 47, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.hiw-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hiw-card h3 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hiw-card p {
    margin: 0;
    color: rgba(0, 0, 0, .62);
    font-size: 14px;
    line-height: 1.75;
}

.hiw-card-static {
    pointer-events: none;
}

/* =========================
                   LIGHT / MARQUEE
                ========================== */
.wb-light {
    background: var(--cream);
    overflow: hidden
}

.wb-marquee {
    margin-top: 26px;
    padding: 22px 0 34px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.wb-marquee__track {
    display: flex;
    gap: 18px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.wb-marquee__item {
    flex: 0 0 auto;
    width: 210px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .20);
    background: #fff;
}

.wb-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* CTA V2 */
.wb-cta2 {
    margin-top: 26px;
    background: var(--brown);
    color: #fff;
    border-radius: 22px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.wb-cta2__content h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.wb-cta2__media {
    position: relative;
    min-height: 260px;
}

.wb-cta2__media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow2);
}

.wb-shape {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    opacity: 1;
    pointer-events: none;
}

.wb-shape--cta.wb-shape--pink {
    right: -90px;
    top: -70px;
    background: var(--pink)
}

.wb-shape--cta.wb-shape--yellow {
    left: -120px;
    bottom: -120px;
    background: var(--yellow)
}

/* =========================
                   FOOTER
                ========================== */
.wb-footer {
    background: #1b100b;
    color: #fff;
    padding: 54px 0 26px;
}

.wb-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.wb-footer__brand {
    font-weight: 600;
    font-size: 18px
}

.wb-footer__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.wb-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr .8fr;
    gap: 18px;
    padding: 22px 0 18px;
}

.wb-footer h4 {
    margin: 0 0 10px;
    font-size: 14px
}

.wb-footer a {
    color: rgba(255, 255, 255, .72)
}

.wb-footer a:hover {
    color: #fff
}

.wb-social {
    display: flex;
    gap: 10px
}

.wb-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.wb-footer__bottom {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
}

/* =========================
                   RESPONSIVE
                ========================== */
@media (max-width: 1100px) {
    .hiw-title {
        font-size: 44px;
    }

    .hiw-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .wb-steps__grid {
        grid-template-columns: 1fr
    }

    .wb-tabpanes {
        position: relative;
        top: 0
    }

    .wb-pane img {
        height: 420px
    }

    .wb-gallery__row {
        grid-template-columns: 1fr
    }

    .wb-gallery__row--top,
    .wb-gallery__row--bottom {
        transform: none
    }

    .wb-blob--yellow {
        width: 340px;
        height: 240px;
        left: -160px;
        bottom: -160px;
    }

    .wb-blob--pink {
        width: 320px;
        height: 230px;
        right: -170px;
        bottom: -190px;
    }

    .wb-blob--blue {
        width: 320px;
        height: 230px;
        right: -190px;
        top: -150px;
    }
}

@media (max-width: 900px) {
    .wb-burger {
        display: flex
    }

    .wb-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 86px;
        background: #fff;
        border-radius: 18px;
        box-shadow: var(--shadow);
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        z-index: 2000;
    }

    .wb-nav.is-open {
        display: flex
    }

    .wb-nav__link,
    .wb-nav__dropbtn {
        color: #111
    }

    .wb-nav__link:hover,
    .wb-nav__dropbtn:hover {
        background: rgba(0, 0, 0, .06)
    }

    .wb-nav__dropmenu {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, .03);
        display: block;
        min-width: 0
    }

    .wb-header__cta {
        display: none
    }

    .wb-nav__mobile-cta {
        display: flex;
    }

    .wb-nav__mobile-cta .wb-btn--secondary {
        color: #111;
        border-color: rgba(0, 0, 0, .25)
    }

    .wb-cta2 {
        grid-template-columns: 1fr
    }

    .hiw-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .wb-btn--dark,
    .wb-btn--outline {
        min-width: 100%;
    }

    .hiw-title {
        font-size: 36px;
    }

    .wb-marquee__item {
        width: 170px;
        height: 260px
    }
}