@import url(https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@400;500;600;700;800&display=swap);

:root {
    --duration: 40s;
    --delay: 0s;
    --iteration-count: infinite;
    --play: running;
    --direction: normal;
    --pause-on-hover: paused;
    --pause-on-click: paused;
    --gradient-color: rgba(255, 255, 255, 1), rgba(255, 255, 255, 0);
    --gradient-width: 50px;
}

/* Reset and Base Styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.wb-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001;
    background-color: #ffffff;
    border-bottom: 1px solid #1d1d28;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.wb-header.is-menu-open {
    background-color: #1d1d28;
    border-color: rgba(255, 255, 255, 0.8);
}

.wb-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 4vw;
}

.wb-header.is-menu-open .wb-logo-img {
    filter: brightness(0) invert(1);
}

.wb-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.wb-nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.wb-nav-link {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1d1d28;
    text-decoration: none;
    transition: color 0.2s;
}

.wb-nav-link:hover {
    color: #59dc85;
}

.wb-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wb-nav-login {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1d1d28;
    text-decoration: none;
    transition: color 0.2s;
}

.wb-nav-login:hover {
    color: #59dc85;
}

.wb-mobile-menu-toggle {
    display: none;
    background-color: #1d1d28;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wb-mobile-menu-toggle svg {
    stroke: #ffffff;
}

.wb-header.is-menu-open .wb-mobile-menu-toggle {
    background-color: #ffffff;
}

.wb-header.is-menu-open .wb-mobile-menu-toggle svg {
    stroke: #1d1d28;
}

/* Base state for icons */
.wb-icon-hamburger {
    display: block;
}

.wb-icon-close {
    display: none !important;
}

/* Menu open state for icons */
.wb-header.is-menu-open .wb-icon-hamburger {
    display: none !important;
}

.wb-header.is-menu-open .wb-icon-close {
    display: block !important;
}

/* Active route for mobile */
.wb-mobile-link.active span {
    color: #1bb1e3;
}

/* Mobile Nav Overlay Panel */
.wb-mobile-nav-panel {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #1d1d28;
    z-index: 1000;
    overflow-y: auto;
}

.wb-header.is-menu-open .wb-mobile-nav-panel {
    display: block;
}

.wb-mobile-nav-list {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.wb-mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 7vw;
    color: #ffffff;
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.wb-mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.wb-mobile-link--primary span {
    color: #59dc85;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Responsive Rules for Header */
@media (max-width: 900px) {
    .wb-nav-desktop {
        display: none;
    }

    .wb-nav-login {
        display: none;
    }

    .wb-header-actions .wb-nav-btn {
        display: none;
    }

    .wb-mobile-menu-toggle {
        display: flex;
    }

    .wb-header-inner {
        padding: 0 5vw;
    }
}

body {
    line-height: 1;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1d1d28;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input::-webkit-input-placeholder {
    line-height: normal !important;
}

/* Layout Utilities */
.wb-site-app {
    position: relative;
    z-index: 1;
    background: #fff;
}

.wb-section {
    padding: 64px 7vw;
}

/* Typography Utilities (Breakpoint-aware) */
.u-hero-title,
.u-text-h1 {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 110%;
}

.u-text-h2 {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
}

.u-text-h4 {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
}

.u-text-regular {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}

.u-text-small {
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

/* Common Classes */
.u-box {
    box-sizing: border-box;
}

.u-transition {
    text-decoration: none;
    color: inherit;
    user-select: none;
    display: block;
    transition: all .2s ease-in-out;
}

.u-transition.u-hover {
    cursor: pointer;
}

.u-transition.u-hover:hover {
    opacity: 0.7;
}

.u-svg {
    fill: none;
    stroke: #1d1d28;
    stroke-width: 1.25px;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.sendmail-btn-icon {
    stroke: #ffffff;
}

.c-btn {
    cursor: pointer;
    border-radius: 100px;
    font-weight: 800;
    background: #1d1d28;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-family: "Noto Sans Display", sans-serif;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.c-btn--primary {
    padding-top: 16px;
    padding-bottom: 16px;
}

.c-btn--outline {
    background: #fff;
    color: #1d1d28;
    border: 1px solid #1d1d28;
}

.c-btn--ghost {
    background: none;
    color: #1d1d28;
}

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

.wb-s-hero {
    position: relative;
    border-bottom: 1px solid #1d1d28;
}

/* Columns — base (stacked, mobile-first) */
.wb-hero-content-column,
.wb-hero-graphic-column {
    position: relative;
}

.wb-hero-content-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 7vw;
    padding-right: 7vw;
}

/* ---- Mobile (≤ 1000px) ---- */
@media only screen and (max-width: 1000px) {
    .wb-s-hero {
        min-height: calc(100vh - 70px - 72px);
        display: flex;
        flex-direction: column;
    }

    .wb-hero-content-column {
        text-align: center;
        border-bottom: 1px solid #1d1d28;
    }

    .wb-hero-graphic-column {
        background-color: #59dc85;
        padding: 32px 7vw;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .wb-hero-graphic-element {
        width: 100%;
    }
}

/* ---- Desktop (≥ 1000px) ---- */
@media only screen and (min-width: 1000px) {
    .wb-s-hero {
        display: flex;
    }

    .wb-hero-content-column,
    .wb-hero-graphic-column {
        width: 50%;
        min-height: calc(100vh - 70px - 72px);
    }

    .wb-hero-content {
        max-width: 470px;
    }

    .wb-hero-graphic-bg {
        height: 100%;
        width: 100%;
        position: absolute;
        right: 0;
        border-left: 1px solid #1d1d28;
        background-color: #59dc85;
    }

    .wb-hero-graphic-element {
        position: absolute;
        z-index: 1;
        height: 85%;
        max-height: 40vw;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }
}

/* --- Social Proof (avatars + stars + label) --- */
.wb-hero-social-proof {
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1000px) {
    .wb-hero-social-proof {
        justify-content: center;
    }
}

.wb-hero-avatars {
    display: flex;
}

.wb-avatar-img {
    width: 38px;
    height: 38px;
    border: solid #000 1px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 1.5px 1.5px 0px #1d1d28;
    margin-right: -8px;
    object-fit: cover;
}

.wb-avatar-img:last-child {
    margin-right: 10px;
}

.wb-hero-rating-text {
    text-align: left;
}

/* Stars */
.wb-hero-stars {
    display: flex;
}

.wb-hero-stars svg {
    width: 18px;
    height: auto;
    stroke: #fbbf24;
    fill: #fbbf24;
}

.wb-hero-stars svg:not(:last-child) {
    margin-right: 2px;
}

/* Trust label */
.wb-hero-trust-label {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
}

/* --- Content Wrap & spacing --- */
.wb-hero-content-wrap {
    width: 100%;
    padding: 64px 0;
}

@media only screen and (max-width: 1000px) {
    .wb-hero-content-wrap {
        padding: 48px 0;
    }
}

.wb-hero-top {
    margin-bottom: 32px;
}

.wb-hero-social-proof {
    margin-bottom: 24px;
}

/* --- Title --- */
.wb-hero-title {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 110%;
    color: #1d1d28;
}

@media only screen and (max-width: 1000px) {
    .wb-hero-title {
        font-size: 44.8px;
    }
}

/* Highlighted word underline effect */
.wb-hero-title-highlight {
    position: relative;
}

.wb-hero-title-underline {
    position: absolute;
    bottom: 8%;
    left: -2%;
    right: -2%;
    height: 30%;
    background: #59dc85;
    z-index: -1;
    transform: rotate(-1deg);
}

.wb-hero-title-inner {
    position: relative;
    z-index: 1;
}

/* --- Subtitle --- */
.wb-hero-subtitle {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #1d1d28;
    margin-bottom: 32px;
}

@media only screen and (max-width: 1000px) {
    .wb-hero-subtitle {
        font-size: 16.2px;
    }
}

/* --- Input group (Claim Your Link pill) --- */
.wb-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #1d1d28;
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    max-width: 520px;
    box-shadow: 6px 6px 0px #1B97F5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wb-input-group:focus-within {
    box-shadow: 8px 8px 0px #59dc85;
    transform: translate(-2px, -2px);
}

.wb-input-prefix {
    display: none;
}

.wb-input-domain {
    font-weight: 800;
    font-size: 18px;
    color: #1d1d28;
    white-space: nowrap;
}

.wb-input-field {
    flex: 1;
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 18px;
    padding: 0 8px;
    background: transparent;
    width: 100%;
}

.wb-input-field::placeholder {
    color: #999;
    font-weight: 400;
}

.wb-input-btn-wrap {
    white-space: nowrap;
}

.wb-claim-btn {
    background: #1B97F5;
    color: #fff;
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid #1d1d28;
    transition: all 0.2s ease;
}

.wb-claim-btn:hover {
    background: #59dc85;
    color: #1d1d28;
}

@media only screen and (max-width: 1000px) {

    .wb-input-domain,
    .wb-input-field {
        font-size: 16px;
    }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */

/* Scroll keyframe: each inner .wb-marquee div goes -100% */
@keyframes wb-marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Outer amber strip — height:72px, #1bb1e3, border-bottom */
.wb-s-marquee-wrapper {
    height: 72px;
    display: flex;
    background-color: #1bb1e3;
    border-bottom: 1px solid #1d1d28;
}

/* Scrolling container — matches .marquee-container */
.wb-marquee-container {
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    position: relative;
    width: 100%;
}

.wb-marquee-container:hover .wb-marquee {
    animation-play-state: paused;
}

/* Each inner marquee div — matches .marquee */
.wb-marquee {
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: wb-marquee-scroll var(--duration, 30s) linear var(--delay, 0s) infinite;
}

/*
 * c-marquee-text — font-size: 24px, font-weight: 700, text-transform: uppercase
 * padding: 0 24px to create spacing between items
 */
.wb-marquee-text {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #1d1d28;
    white-space: nowrap;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    height: 72px;
}

@media only screen and (max-width: 1000px) {
    .wb-marquee-text {
        font-size: 21.6px;
    }
}

/* c-marquee-item — icon wrapper, matches u-box c-marquee-item */
.wb-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    height: 72px;
}

/* c-marquee-icon — exactly 48px wide, matches reference */
.wb-marquee-icon {
    width: 48px;
    height: auto;
    display: block;
}


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

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

.wb-testimonials-section {
    border-bottom: 1px solid #1d1d28;
    background-color: #5ed1ca;
    padding: 80px 0;
    overflow: hidden;
}

.wb-testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 7vw;
}

.wb-testimonials-inner {
    max-width: 700px;
    text-align: center;
}

.wb-hero-title {
    font-family: "Noto Sans Display", sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #1d1d28;
    line-height: 1.1;
    margin: 0;
}

.wb-hero-title-highlight {
    position: relative;
    display: inline-block;
}

.wb-hero-title-underline {
    position: absolute;
    bottom: 5%;
    left: -3%;
    right: -3%;
    height: 35%;
    background-color: #1bb1e3;
    z-index: 0;
}

.wb-hero-title-inner {
    position: relative;
    z-index: 1;
}

.wb-marquee-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: grab;
    user-select: none;
    margin-top: 32px;
}

.wb-marquee-slider+.wb-marquee-slider {
    margin-top: 0px;
}

.wb-marquee-slider:active {
    cursor: grabbing;
}

.wb-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    will-change: transform;
}

.wb-track-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 32px;
    padding: 0 16px 24px;
}

.wb-testimonial-link {
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    /* box-shadow: 8px 8px 0px #59dc85; */
    border: 1px solid #1d1d28;
    overflow: visible;
    width: 300px;
    min-width: 375px;
    max-width: 80vw;
    background-color: #fff;
    padding: 32px;
    text-decoration: none;
    color: #1d1d28;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* .wb-testimonial-link:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0px #1bb1e3;
} */

.wb-testimonial-link::before {
    content: "“";
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 140px;
    font-family: Georgia, serif;
    color: rgba(27, 151, 245, 0.1);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.wb-star-rating {
    display: inline-flex;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid #1d1d28;
    width: fit-content;
    box-shadow: 3px 3px 0px #1d1d28;
}

.wb-star-rating svg {
    width: 16px;
    height: auto;
    stroke: #1d1d28;
    stroke-width: 2px;
    fill: #fbbf24;
}

.wb-star-rating svg:not(:last-child) {
    margin-right: 4px;
}

.wb-testimonial-text {
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.6;
    min-height: 70px;
    position: relative;
    z-index: 1;
    color: #1d1d28;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.wb-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
    border-top: 2px dashed rgba(29, 29, 40, 0.1);
    padding-top: 24px;
}

.wb-testimonial-avatar-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1d1d28;
    background: #fff;
    flex-shrink: 0;
}

.wb-btn {
    cursor: pointer;
    border-radius: 100px;
    font-weight: 800;
    background: #1d1d28;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-family: "Noto Sans Display", sans-serif;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.wb-btn:hover {
    transform: scale(1.02);
}

.wb-btn--hero {
    padding: 16px 32px;
    font-size: 16px;
}

.wb-flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.wb-testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-testimonial-name {
    font-family: inherit;
    font-weight: 800;
    font-size: 16px;
    color: #1d1d28;
}

.wb-testimonial-role {
    font-family: "Noto Sans Display", sans-serif;
    font-size: 13px;
    color: #1bb1e3;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Margin utilities */
.wb-mb-huge {
    margin-bottom: 80px;
}

.wb-mb-xl {
    margin-bottom: 24px;
}

@media only screen and (max-width: 1000px) {
    .wb-testimonial-link {
        min-width: 320px;
        padding: 32px 24px;
        border-radius: 24px;
    }
}

/* Template Section */
.wb-template-section {
    border-bottom: 1px solid #1d1d28;
    background-color: #fff;
    overflow: hidden;
    padding: 96px 0 112px 0;
}

.wb-template-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 64px;
    padding: 0 24px;
}

.wb-template-subtitle {
    max-width: 600px;
    text-align: center;
    font-family: "Noto Sans Display", sans-serif;
    font-size: 20px;
    margin-top: 24px;
    font-weight: 500;
    color: #1d1d28;
}

.wb-template-card {
    flex-shrink: 0;
    width: 300px;
    margin-right: 32px;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: #1d1d28;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1d1d28;
    border: 1px solid #1d1d28;
    background-color: #fff;
    padding: 24px;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 5px;
}

.wb-template-card:hover {
    transform: translateY(-4px);
}

.wb-template-img-container {
    width: 100%;
    aspect-ratio: 1 / 2.165;
    position: relative;
    border-radius: 12px;
    border: 3px solid transparent;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f6f6f6;
}

.wb-template-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.wb-template-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    width: 100%;
    text-align: center;
}

.wb-btn--secondary {
    padding: 16px 32px;
    font-size: 16px;
    background-color: transparent;
    color: #1d1d28;
    border: 1px solid #1d1d28;
}

.wb-btn--secondary:hover {
    background-color: #1d1d28;
    color: #fff;
}

@media only screen and (max-width: 1000px) {
    .wb-template-card {
        width: 200px;
        margin-right: 24px;
    }
}


/* --- Features Section (Instagram, Folders, etc.) --- */
.wb-feature-media {
    display: block;
}

@media only screen and (max-width: 1000px) {

    .wb-feature-reversed .wb-feature-content,
    .wb-feature-row .wb-feature-content {
        text-align: center;
        padding: 64px 7vw;
        border-bottom: 1px solid #1d1d28;
    }

    .wb-feature-reversed .wb-feature-media,
    .wb-feature-row .wb-feature-media {
        width: 100%;
        border-bottom: 1px solid #1d1d28;
    }
}

@media only screen and (min-width: 1000px) {

    .wb-feature-reversed,
    .wb-feature-row {
        display: flex;
        border-bottom: 1px solid #1d1d28;
    }

    .wb-feature-reversed {
        flex-direction: row-reverse;
    }

    .wb-feature-reversed .wb-feature-media {
        border-right: 1px solid #1d1d28;
    }

    .wb-feature-row .wb-feature-content {
        border-right: 1px solid #1d1d28;
    }

    .wb-feature-media {
        width: 50%;
        object-fit: cover;
    }

    .wb-feature-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50%;
        padding: 32px 7vw;
    }

    .wb-feature-content .wb-feature-inner {
        max-width: 500px;
    }
}

/* --- Who Organized Section --- */
.wb-who-section {
    background: #59dc85;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #1d1d28;
    padding-top: 64px;
    padding-bottom: 64px;
}

.wb-who-header {
    padding-left: 7vw;
    padding-right: 7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 32px;
}

.wb-who-inner {
    max-width: 625px;
}

.wb-who-media {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 950px;
}

.wb-who-media-overlap {
    margin-top: -4px;
}

/* --- Horizontal Scroller Section --- */
.wb-horizontal-scroller {
    border-bottom: 1px solid #1d1d28;
}

@media only screen and (max-width: 1000px) {
    .wb-horizontal-header {
        padding: 32px 7vw;
        text-align: center;
    }

    .wb-horizontal-track {
        overflow-x: auto;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 32px;
    }

    .wb-horizontal-img {
        height: 60vh;
        cursor: pointer;
        max-width: none;
        flex-shrink: 0;
    }
}

@media only screen and (min-width: 1000px) {
    .wb-horizontal-scroller {
        display: flex;
        overflow-x: auto;
        align-items: center;
        height: 90vh;
        position: relative;
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .wb-horizontal-header {
        min-width: 350px;
    }

    .wb-horizontal-track {
        display: flex;
        position: relative;
        align-items: center;
        height: 100%;
        width: max-content;
    }

    .wb-horizontal-img {
        height: 90%;
        width: auto;
        max-width: none;
        flex-shrink: 0;
        cursor: pointer;
    }
}

.wb-horizontal-track .wb-btn {
    flex-shrink: 0;
}

/* --- Purple Marquee Wrapper --- */
.wb-s-marquee-wrapper.wb-marquee--purple {
    background-color: #5ed1ca;
}

/* --- Bottom CTA Section --- */
.wb-cta-section {
    background-color: #feeb96;
}

@media only screen and (max-width: 1000px) {
    .wb-cta-graphic {
        padding: 32px 7vw;
    }

    .wb-cta-graphic img {
        width: 100%;
        display: block;
    }

    .wb-cta-content {
        padding: 64px 7vw 32px;
        text-align: center;
    }
}

@media only screen and (min-width: 1000px) {
    .wb-cta-section {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }

    .wb-cta-graphic,
    .wb-cta-content {
        width: 50vw;
    }

    .wb-cta-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 32px 7vw;
    }

    .wb-cta-graphic {
        position: relative;
        overflow: hidden;
        min-height: 80vh;
    }

    .wb-cta-graphic img {
        height: 110%;
        position: absolute;
        right: 0;
        bottom: -20%;
    }
}

/* --- Footer Port --- */
.u-box {
    box-sizing: border-box;
}

.s-footer-wrap {
    background-color: #1d1d28;
    padding: 64px 9vw;
}

.s-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.c-footer-logo-link {
    display: block;
    color: #fff;
    text-decoration: none;
}

.c-footer-logo {
    width: 90px;
    height: auto;
}

.c-footer-nav {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.c-footer-newsletter {
    display: block;
    color: #fff;
    width: 350px;
}

.c-footer-newsletter-inner {
    width: 100%;
}

.c-footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.c-footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #1d1d28;
    font-size: 20px;
    background-color: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid #1B97F5;
}

.c-footer-social-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #1d1d28;
}

.c-footer-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 24px;
    font-family: inherit;
}

.c-gallery-link {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.c-gallery-item-wrap {
    opacity: 0.7;
    color: #fff;
}

.c-gallery-item-wrap.c-gallery-item-text:hover {
    opacity: 1;
}

.u-font-alt {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    font-family: inherit;
}

.u-text-underline {
    text-decoration: underline;
    color: inherit;
}

.u-transition {
    transition: all 0.2s ease;
}

.c-faq-item {
    margin-top: 16px;
}

.kRf7uJtXo2lt6ZKGhhaI {
    display: inline;
}

.s-section-container {
    margin-bottom: 24px;
}

.c-input-group {
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid #1d1d28;
    box-shadow: 3px 3px 0px #1d1d28;
    background-color: #fff;
    cursor: text;
    color: #1d1d28;
    box-shadow: 6px 6px 0px #1B97F5;
}

.c-input-group--lg {
    padding: 8px;
}

.u-pl-large {
    padding-left: 24px;
}

.c-input-field {
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    cursor: inherit;
    border: none;
    outline: none;
    color: inherit;
    font-size: 16px;
    font-family: inherit;
}

.c-input-field::placeholder {
    color: rgba(29, 29, 40, 0.5);
}

.MwJNasBFRJ9VVDqD4w9X {
    padding-left: 16px;
    padding-right: 16px;
}

.u-rounded-full {
    border-radius: 100px;
}

.c-input-btn-wrap {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.u-svg {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .s-footer-content {
        flex-direction: column;
    }

    .c-footer-logo-link,
    .c-footer-nav {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
    }

    .c-footer-title {
        font-size: 18px;
    }
}

/* --- Templates Page Styles --- */
.wb-templates-section {
    padding: 100px 7vw;
    text-align: center;
    background-color: #fff;
}

.wb-templates-title {
    font-size: 56px;
    font-weight: 800;
    font-family: "Noto Sans Display", sans-serif;
    color: #1d1d28;
    margin-bottom: 24px;
}

.wb-templates-subtitle {
    font-size: 20px;
    color: #1d1d28;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.wb-templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media only screen and (max-width: 1000px) {
    .wb-templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-templates-title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 600px) {

    .wb-templates-section {
        padding: 64px 5vw;
    }
}

.wb-templates-card {
    text-decoration: none;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: #1d1d28;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1d1d28;
    border: 1px solid #1d1d28;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 5px;
}

.wb-templates-card:hover {
    transform: translateY(-8px);
}

.wb-templates-img-container {
    width: 100%;
    aspect-ratio: 1 / 2.165;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f6f6f6;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.wb-templates-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* --- Blog Page Styles --- */
.wb-blogs-section {
    padding: 100px 7vw;
    background-color: #fff;
    min-height: calc(100vh - 400px);
}

.wb-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

@media only screen and (max-width: 1000px) {
    .wb-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    .wb-blogs-grid {
        grid-template-columns: 1fr;
    }

    .wb-blogs-section {
        padding: 64px 5vw;
    }
}

.wb-blog-card {
    text-decoration: none;
    color: #1d1d28;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1d1d28;
    border: 1px solid #1d1d28;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.2s ease;
    height: 100%;
}

.wb-blog-card:hover {
    transform: translateY(-8px);
}

.wb-blog-img-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid #1d1d28;
    overflow: hidden;
    background-color: #f6f6f6;
}

.wb-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.wb-blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wb-blog-title {
    font-size: 24px;
    font-weight: 800;
    font-family: inherit;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.wb-blog-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a55;
    margin: 0 0 24px 0;
    flex: 1;
}

.wb-blog-date {
    font-size: 14px;
    color: #8c8c9a;
    font-weight: 500;
}

/* --- Contact Page Styles --- */
.wb-contact-section {
    padding: 100px 7vw;
    background-color: #fff;
}

.wb-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Changed from 64px */
    background: #fff;
    border-radius: 24px;
    border: 1px solid #1d1d28;
    box-shadow: 8px 8px 0px #1d1d28;
    overflow: hidden;
}

.wb-contact-details {
    padding: 64px;
    background-color: #f6f6f6;
    border-right: 1px solid #1d1d28;
    color: #1d1d28;
    display: flex;
    flex-direction: column;
}

.wb-contact-h3 {
    font-family: inherit;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.wb-contact-p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 48px 0;
    color: rgba(29, 29, 40, 0.8);
}

.wb-contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.wb-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(29, 29, 40, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
}

.wb-contact-label {
    font-size: 14px;
    color: rgba(29, 29, 40, 0.6);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wb-contact-value {
    font-size: 18px;
    color: #1d1d28;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s;
}

a.wb-contact-value:hover {
    color: #3b82f6;
}

.wb-contact-form-wrap {
    padding: 48px;
}

.wb-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wb-form-group {
    display: flex;
    flex-direction: column;
}

.wb-form-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1d1d28;
}

.wb-form-input,
.wb-form-textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background-color: #f9f9f9;
    font-family: inherit;
    font-size: 16px;
    color: #1d1d28;
    transition: all 0.2s;
    box-sizing: border-box;
}

.wb-form-input:focus,
.wb-form-textarea:focus {
    outline: none;
    border-color: #1d1d28;
    background-color: #fff;
}

.wb-form-textarea {
    resize: vertical;
    min-height: 120px;
}

@media only screen and (max-width: 1000px) {
    .wb-contact-container {
        grid-template-columns: 1fr;
    }

    .wb-contact-details {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #1d1d28;
    }

    .wb-contact-form-wrap {
        padding: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .wb-contact-section {
        padding: 64px 5vw;
    }

    .wb-contact-details,
    .wb-contact-form-wrap {
        padding: 24px;
    }

    .wb-form-row {
        grid-template-columns: 1fr;
    }

    .wb-contact-value {
        font-size: 16px;
    }
}

/* --- Pricing Page Styles --- */
.wb-pricing-section {
    padding: 100px 7vw;
    background-color: #fff;
    min-height: calc(100vh - 400px);
}

.wb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.wb-pricing-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #1d1d28;
    box-shadow: 6px 6px 0px #1d1d28;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wb-pricing-card--popular {
    border: 2px solid #1d1d28;
    box-shadow: 8px 8px 0px #1d1d28;
    transform: scale(1.04);
    z-index: 2;
}

.wb-pricing-popular-badge {
    background-color: #59dc85;
    color: #1d1d28;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    padding: 8px;
    border-bottom: 2px solid #1d1d28;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wb-pricing-header {
    padding: 40px 32px 32px 32px;
    border-bottom: 1px solid rgba(29, 29, 40, 0.1);
    display: flex;
    flex-direction: column;
}

.wb-pricing-name {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 16px 0;
    font-family: inherit;
    color: #1d1d28;
}

.wb-pricing-price {
    font-size: 48px;
    font-weight: 800;
    font-family: "Noto Sans Display", sans-serif;
    color: #1d1d28;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.wb-pricing-period {
    font-size: 16px;
    font-weight: 600;
    color: rgba(29, 29, 40, 0.6);
    margin-left: 4px;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.wb-pricing-desc {
    font-size: 16px;
    color: rgba(29, 29, 40, 0.8);
    margin: 0 0 32px 0;
    line-height: 1.5;
    flex: 1;
}

.wb-pricing-btn {
    width: 100%;
    justify-content: center;
    border: 1px solid #1d1d28;
    box-shadow: none;
    font-weight: 700;
}

.wb-pricing-btn:hover {
    box-shadow: 4px 4px 0px #1d1d28;
    transform: none;
}

.wb-pricing-features {
    padding: 32px;
    flex: 1;
    background-color: #fafafa;
}

.wb-pricing-feature-title {
    font-weight: 700;
    font-size: 14px;
    color: #1d1d28;
    margin-bottom: 24px;
}

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

.wb-pricing-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    color: #1d1d28;
    line-height: 1.5;
}

.wb-check-icon {
    width: 20px;
    height: 20px;
    color: #1B97F5;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media only screen and (max-width: 1000px) {
    .wb-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wb-pricing-card--popular {
        transform: none;
    }
}

@media only screen and (max-width: 768px) {
    .wb-pricing-grid {
        grid-template-columns: 1fr;
    }

    .wb-pricing-section {
        padding: 64px 5vw;
    }
}

/* --- 404 Page Styles --- */
.wb-404-section {
    padding: 100px 7vw;
    background-color: #fff;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-404-number {
    font-size: 150px;
    font-weight: 800;
    line-height: 1;
    color: #1d1d28;
    background: linear-gradient(135deg, #1B97F5 0%, #59dc85 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Noto Sans Display", sans-serif;
    margin-bottom: 0px;
}

@media only screen and (max-width: 600px) {
    .wb-404-number {
        font-size: 100px;
    }

    .wb-404-section {
        padding: 64px 5vw;
    }
}

/* ============================================
   CREATIVE SLIDER ANIMATION (Template Section)
   ============================================ */
.wb-creative-slider {
    perspective: 1200px;
    overflow: visible !important;
    padding: 60px 0;
    margin: 40px 0;
}

.wb-creative-slider .wb-marquee-track {
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-10deg) rotateZ(2deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wb-creative-slider:hover .wb-marquee-track {
    /* Flattens out beautifully smoothly on hover to easily see all cards */
    transform: rotateX(2deg) rotateY(0deg) rotateZ(0deg);
}

/* Apply wavy staggered offset to every other card */
.wb-creative-slider .wb-track-container>.wb-template-card:nth-child(even) {
    transform: translateY(40px) translateZ(0px);
}

.wb-creative-slider .wb-track-container>.wb-template-card:nth-child(odd) {
    transform: translateY(-40px) translateZ(0px);
}

/* Overwrite template hover specifically inside creative slider to add 3D Pop */
.wb-creative-slider .wb-track-container>.wb-template-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, border-color 0.4s;
}

.wb-creative-slider .wb-track-container>.wb-template-card:hover {
    transform: translateY(0px) translateZ(60px) scale(1.05);
    box-shadow: -15px 20px 0px #1bb1e3;
    border-color: #1bb1e3;
    z-index: 10;
}

@media (max-width: 1000px) {
    .wb-creative-slider {
        padding: 0;
    }

    .wb-template-card {
        margin-right: 0px;
    }

    .wb-creative-slider .wb-marquee-track {
        transform: rotateX(5deg) rotateY(0deg) rotateZ(0deg);
    }

    .wb-creative-slider:hover .wb-marquee-track {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    /* .wb-creative-slider .wb-track-container>.wb-template-card:nth-child(even), */
    .wb-creative-slider .wb-track-container>.wb-template-card:nth-child(odd) {
        transform: translateY(-20px) translateZ(0px);
    }

    .wb-creative-slider .wb-track-container>.wb-template-card:nth-child(even) {
        transform: translateY(20px) translateZ(0px);
    }

    .wb-creative-slider .wb-track-container>.wb-template-card:hover {
        transform: translateY(-10px) translateZ(0px) scale(1.02);
        box-shadow: -8px 8px 0px #1bb1e3;
    }
}

/* ============================================
   CUSTOM BUTTON STYLE 5 (Sandesh Port)
   ============================================ */

.wb-theme-btn {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    transition: all 400ms ease;
    text-decoration: none;
    cursor: pointer;
}

.wb-btn-style5 {
    align-items: center;
    background-color: #1d1d28;
    border-radius: 30px;
    color: #fff;
    font-family: inherit;
    font-weight: 800;
    height: 56px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
    border: 2px solid #1d1d28;
}

.wb-btn-style5:hover {
    background-color: #59dc85;
    transform: translateY(-2px);
}

.wb-btn-style5 .wb-left-arrow {
    left: 7px;
    transform: scale(0);
    position: absolute;
}

.wb-btn-style5 .wb-btn-title {
    color: #fff;
    font-size: 16px;
    line-height: inherit;
    padding: 0px 70px 0 26px;
    transition: all 400ms ease;
}

.wb-btn-style5:hover .wb-btn-title {
    color: #1d1d28;
}

.wb-btn-style5 .wb-left-arrow,
.wb-btn-style5 .wb-right-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    height: 40px;
    width: 40px;
    position: absolute;
    transition: all 400ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-btn-style5 .wb-right-arrow {
    left: auto;
    right: 7px;
    transform: scale(1);
}

.wb-btn-style5:hover .wb-left-arrow {
    transform: scale(1);
    color: #1d1d28;
}

.wb-btn-style5:hover .wb-btn-title {
    transform: translateX(37px);
}

.wb-btn-style5:hover .wb-right-arrow {
    transform: scale(0);
}

.wb-btn-style5 svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: color 400ms ease;
}

/* ============================================
   WHY CHOOSE SECTION (REDESIGNED)
   ============================================ */
.wb-choose-section {
    padding: 100px 5vw;
    background: #f6f6f6;
    border-bottom: 1px solid #1d1d28;
}

.wb-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.wb-choose-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wb-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.wb-choose-card {
    background: #fff;
    border: 3px solid #1d1d28;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 8px 8px 0px #1d1d28;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wb-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0px #1B97F5;
}

.wb-choose-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1d1d28;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0px #1d1d28;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wb-choose-card:hover .wb-choose-icon {
    transform: scale(1.1) rotate(-5deg);
}

.wb-choose-img {
    width: 60%;
    height: auto;
    display: block;
}

.bg-green {
    background-color: #59dc85;
}

.bg-yellow {
    background-color: #feeb96;
}

.bg-blue {
    background-color: #1bb1e3;
}

.bg-red {
    background-color: #fe96a2;
}

.wb-choose-title {
    font-family: inherit;
    font-weight: 800;
    font-size: 24px;
    color: #1d1d28;
    margin: 0 0 12px 0;
}

.wb-choose-desc {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a5a;
    margin: 0;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

@media only screen and (max-width: 1000px) {
    .wb-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wb-choose-section {
        padding: 80px 7vw;
    }

    .wb-choose-card {
        padding: 32px;
    }
}

/* ============================================
   LOGIN SECTION
   ============================================ */
.wb-login-section {
    padding: 100px 5vw;
    background: #f6f6f6;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1d1d28;
}

.wb-login-card {
    background: #fff;
    border: 3px solid #1d1d28;
    border-radius: 32px;
    padding: 48px;
    width: 100%;
    max-width: 580px;
    /* Expanded slightly to house native dual-input rows for registration */
    box-shadow: 6px 6px 0px #1d1d28;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wb-login-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 40px;
    text-align: center;
    font-family: "Noto Sans Display", sans-serif;
    font-weight: 800;
    color: #1d1d28;
}

.wb-login-subtitle {
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
    color: #4a4a5a;
}

.wb-login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.wb-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.wb-input-label {
    font-family: 'Noto Sans Display', sans-serif;
    font-weight: 700;
    color: #1d1d28;
    font-size: 15px;
}

.wb-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wb-login-input-field {
    padding: 16px;
    border: 2px solid #1d1d28;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.2s, background-color 0.2s;
    /* box-shadow: 3px 3px 0px #1d1d28; */
    background-color: #fff;
    color: #1d1d28;
}

.wb-login-input-field:focus {
    box-shadow: 4px 4px 0px #1bb1e3;
    background-color: #f0faff;
}

.wb-login-forgot {
    font-family: inherit;
    font-size: 14px;
    color: #1bb1e3;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.wb-login-forgot:hover {
    color: #1d1d28;
    text-decoration: underline;
}

.wb-login-submit {
    width: 100%;
    border: none;
    font-size: 18px;
    padding: 18px;
    border-radius: 16px;
    margin-top: 8px;
    box-shadow: 4px 4px 0px #1d1d28;
    transition: all 0.2s ease;
    cursor: pointer;
}

.wb-login-submit:hover {
    transform: translateY(2px);
    box-shadow: 2px 2px 0px #1d1d28;
}

.wb-login-footer {
    text-align: center;
    margin-top: 32px;
    font-family: inherit;
    color: #4a4a5a;
}

.wb-login-signup-link {
    color: #1bb1e3;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.wb-login-signup-link:hover {
    color: #1d1d28;
}

@media only screen and (max-width: 768px) {
    .wb-login-section {
        padding: 60px 4vw;
    }

    .wb-login-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .wb-login-title {
        font-size: 32px;
    }
}

/* ============================================
   SIGNUP SECTION SPECIFICS
   ============================================ */
.wb-login-card--large {
    max-width: 880px;
}

.wb-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.wb-form-row>.wb-input-wrapper {
    flex: 1;
}

.wb-consent-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.wb-consent-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #1d1d28;
    cursor: pointer;
}

.wb-consent-label {
    font-family: inherit;
    font-size: 14px;
    color: #4a4a5a;
    line-height: 1.5;
    cursor: pointer;
}

.wb-terms-link {
    color: #1bb1e3;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s;
}

.wb-terms-link:hover {
    color: #1d1d28;
}

.wb-mt-16 {
    margin-top: 16px;
}

@media only screen and (max-width: 768px) {
    .wb-form-row {
        flex-direction: column;
        gap: 24px;
    }
}