body {
    font-family: "M PLUS 1p", sans-serif;
    color: #191919;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 55px;
}

.join-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.join-navbar-inner {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.join-navbar-logo {
    height: 1.9rem;
    width: auto;
}

.join-navbar-links {
    display: flex;
    align-items: flex-end;
    gap: 1.8rem;
}

.join-navbar-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00adcf;
    font-weight: 600;
    font-size: 0.8rem;
    transition: color 0.25s ease;
}

.join-navbar-icon {
    width: 1.7rem;
    height: 1.7rem;
    margin-bottom: 0.3rem;
    filter: brightness(0) saturate(100%) invert(48%) sepia(71%) saturate(1791%)
        hue-rotate(155deg) brightness(92%) contrast(91%);
    transition:
        filter 0.25s ease,
        background-color 0.25s ease;
}

.join-navbar-link:hover .join-navbar-icon {
    filter: drop-shadow(0 0 4px rgba(0, 173, 207, 0.4));
}

.join-navbar-link:hover {
    color: #008aa7;
}

.join-navbar-label {
    font-size: 0.8rem;
    line-height: 1;
}

/* HERO AREA */
.join-hero .hero-inner-common {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.join-hero-content {
    color: #ffffff;
    max-width: 60%;
}

.join-hero-title {
    font-weight: 800;
    font-size: 3.6rem;
    line-height: 1.4;
    color: #ffffff;
}

.join-hero-sub {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #f6f6f6;
}

.join-hero-tagline-block {
    display: inline-flex;
    flex-direction: column;
    gap: 0.4rem;
}

.join-hero-tagline-black {
    font-size: 1.2rem;
    color: #191919;
    display: inline-block;
    padding: 0.25rem 0.75rem;
}

.join-hero-logo-block img {
    height: 4rem;
    width: auto;
    display: block;
    margin-top: 0.2rem;
}

.join-hero-bubbles {
    position: absolute;
    top: 1.5rem;
    right: -4rem;
}

.join-hero-bubble {
    position: absolute;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: join-bubble-soft 18s ease-in-out infinite;
    opacity: 0;
}

.join-hero-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.join-hero-bubble.bubble-1 {
    width: 24rem;
    height: 24rem;
    top: 0;
    right: -5rem;
    animation-delay: 0s;
    z-index: 3;
}

.join-hero-bubble.bubble-2 {
    width: 18rem;
    height: 18rem;
    top: 12rem;
    right: 14rem;
    z-index: 1;
    animation-delay: 6s;
    z-index: 2;
}

.join-hero-bubble.bubble-3 {
    width: 15rem;
    height: 15rem;
    top: 25rem;
    right: 26rem;
    animation-delay: 12s;
    z-index: 1;
}

@keyframes join-bubble-soft {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.97);
    }

    /* gently appearing */
    15% {
        opacity: 0.4;
        transform: translateY(0) scale(1);
    }

    35% {
        opacity: 0.9;
        transform: translateY(4px) scale(1.02);
    }

    55% {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    100% {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
}

/* responsive tweaks */

@media (max-width: 992px) {
    .join-hero .hero-inner-common {
        flex-direction: column;
        align-items: flex-start;
    }

    .join-hero-bubbles {
        align-self: center;
        width: 100%;
        top: auto;
        right: auto;
        max-width: 26rem;
        min-height: 20rem;
    }

    .join-hero-title {
        font-size: 3rem;
    }

    .join-hero-bubble.bubble-1 {
        width: 14rem;
        height: 14rem;
        top: -5rem;
        right: -15rem;
    }
    .join-hero-bubble.bubble-2 {
        width: 12rem;
        height: 12rem;
        top: 6rem;
        right: -8rem;
        z-index: 1;
    }
    .join-hero-bubble.bubble-3 {
        width: 10rem;
        height: 10rem;
        top: 16rem;
        right: -12rem;
    }
}

@media (max-width: 575.98px) {
    .join-hero-title {
        font-size: 1.8rem;
    }

    .join-hero-sub {
        font-size: 1rem;
    }

    .join-hero-bubbles {
        max-width: 20rem;
        min-height: 18rem;
    }

    .join-hero-bubble.bubble-1 {
        width: 11rem;
        height: 11rem;
        top: 0rem;
        right: -6rem;
    }
    .join-hero-bubble.bubble-2 {
        width: 9rem;
        height: 9rem;
        top: 8rem;
        right: -5rem;
        z-index: 1;
    }
    .join-hero-bubble.bubble-3 {
        width: 7rem;
        height: 7rem;
        top: 16rem;
        right: -2rem;
    }
}
/* headings */

.hybrid-school {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-title-blue {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;

    font-weight: 800;
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    color: #00adcf;
    margin-bottom: 1rem;
}

.section-title-blue::before {
    content: "";
    width: 0.5rem;
    background-color: #00adcf;
    border-radius: 2px;
}

.hybrid-image {
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    height: auto;
}

/* COMPARE BOXES */

.compare-section {
    margin: 1.5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.compare-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.compare-box {
    flex: 0 0 45%;
    border: 3px solid #00adcf;
    border-radius: 0.75rem;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.compare-x {
    font-size: 3rem;
    font-weight: 800;
    color: #00adcf;
    line-height: 1;
}

.compare-title-blue {
    color: #00adcf;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.compare-title-white {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-box {
    background-color: #80d6e4;
}

.compare-text {
    color: #191919;
    font-size: 1.2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .compare-wrapper {
        gap: 0.5rem;
    }

    .compare-box {
        flex: 0 0 48%;
        padding: 0.5rem;
    }

    .compare-x {
        font-size: 4rem;
    }

    .compare-title-blue,
    .compare-title-white {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .compare-text {
        font-size: 0.9rem;
    }
}

.study-quality {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-title-red {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    font-weight: 800;
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    color: #e14b4b;
}

.section-title-red::before {
    content: "";
    width: 0.5rem;
    background-color: #e14b4b;
    border-radius: 2px;
}

.study-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
    margin-top: 1.5rem;
}

.direct-results {
}

.results-text {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
}

.results-grid {
    margin-top: 2rem;
    row-gap: 1.5rem;
}

.results-image {
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.results-card {
    background-color: #80d6e4;
    border: 3px solid #00adcf;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.results-card-label {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    color: #0084a1;
    margin-bottom: 0.75rem;
}

.results-card-main {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
}

.results-red {
    color: #e14b4b;
    font-size: 2.5rem;
}
@media (max-width: 768px) {
    .results-card {
        margin-top: 1.5rem;
    }
}

.success-secrets {
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.secrets-row {
    margin-top: 2rem;
    row-gap: 1.5rem;
    align-items: center;
}

.secrets-image {
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.secret-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.secret-icon {
    width: 5rem;
    height: auto;
    flex-shrink: 0;
}

.secret-text-block {
    flex: 1;
}

.secret-title {
    color: #e14b4b;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.secret-body {
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .secrets-image-col {
        margin-bottom: 1.5rem;
    }
}

.kodawari-section {
    aspect-ratio: auto;
    margin-top: 4rem;
    margin-bottom: 4rem;
    z-index: 0;
    padding: 3rem 0;
}

.kodawari-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.kodawari-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.kodawari-icon {
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    object-fit: cover;
}

.kodawari-title {
    font-weight: 800;
    font-size: 2rem;
}

.kodawari-text {
    font-size: 0.95rem;
    color: #191919;
}

.kodawari-highlight {
    background-color: #ffe66b;
    padding: 0 0.15em;
}

.kodawari-graph-wrap {
    text-align: center;
    margin-top: 1rem;
}

.kodawari-graph {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.kodawari-subtitle-section {
    margin-top: 1rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.kodawari-subtitle-wrap {
    display: inline-block;
    position: relative;
}

.kodawari-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transform: translateY(-4rem);
}

.kodawari-arrow {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-left: 10px solid #e14b4b;
    border-bottom: 10px solid #e14b4b;
    transform: rotate(-45deg);
}

.kodawari-arrow.second {
    margin-top: 0.2rem;
    opacity: 0.85;
    animation-delay: 0.2s;
}

.kodawari-subtitle {
    display: inline-block;
    color: #e14b4b;
    font-weight: 800;
    font-size: 1.9rem;
    border-bottom: 3px solid #e14b4b;
    transform: translateY(-4rem);
}

@media (max-width: 768px) {
    .kodawari-inner {
        padding: 0;
    }

    .kodawari-header {
        margin: 0;
    }

    .kodawari-icon {
        width: 3rem;
        height: 3rem;
    }

    .kodawari-title {
        font-size: 1.6rem;
    }

    .kodawari-subtitle-section {
        margin-top: 1.5rem;
        margin-bottom: 3rem;
    }

    .kodawari-subtitle {
        font-size: 1.6rem;
    }
}

.features-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
}

.features-intro {
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.feature-point {
    width: 8rem;
    height: auto;
}

.feature-number {
    font-size: 6.5rem;
    font-weight: 900;
    color: #e14b4b;

    letter-spacing: -2px;
}

.feature-title {
    font-weight: 800;
    font-size: 1.6rem;
    color: #191919;
    margin-bottom: 0.6rem;
}

.feature-body {
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
    max-width: 600px;
}

.feature-highlight {
    color: #e14b4b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .feature-point {
        width: 6rem;
    }

    .feature-number {
        font-size: 5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-body {
        font-size: 0.95rem;
    }
}

.opening-flow-steps {
    margin: 4rem 0;
}

.flow-steps {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.flow-step {
    border: 2px solid #00adcf;
    border-radius: 0.75rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #191919;
    line-height: 1.7;
}

.flow-step-blue {
    background-color: #00adcf;
    color: #fff;
    font-weight: 700;
}

.flow-visionup {
    font-weight: 800;
}

.flow-arrow {
    width: 20px;
    height: 20px;
    margin: 0.75rem auto;
    border-left: 6px solid #00adcf;
    border-bottom: 6px solid #00adcf;
    transform: rotate(-45deg);
}

.flow-branch {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    width: 100%;
}

.flow-branch-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 0;
    max-width: calc(50% - 0.75rem);
}

.flow-branch-col .flow-step {
    width: 100%;
    box-sizing: border-box;
}

.flow-merge {
    position: relative;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .flow-steps {
        max-width: 95%;
    }

    .flow-branch {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .flow-arrow {
        width: 18px;
        height: 18px;
        border-width: 2.5px;
    }
}

.initial-costs {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.initial-costs-row {
    align-items: center;
    row-gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.initial-costs-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
}

.initial-costs-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.cost-table {
    margin-top: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.cost-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.cost-table-header {
    background-color: #f5f5f5;
    font-weight: 700;
}

.cost-col-item,
.cost-col-amount {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
}

.cost-col-item {
    text-align: left;
}

.cost-col-amount {
    text-align: right;
    white-space: nowrap;
}

.cost-table-row:last-child .cost-col-item,
.cost-table-row:last-child .cost-col-amount {
    border-bottom: none;
}

.cost-total-row .cost-col-item,
.cost-total-row .cost-col-amount {
    background-color: #f5f5f5;
}

.cost-total-label {
    font-weight: 700;
}

.cost-total-amount strong {
    font-size: 1.05rem;
}

.cost-table sup {
    font-size: 0.7em;
}

.cost-notes {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555555;
}

.cost-notes p {
    margin-bottom: 0.5rem;
}

.other-costs {
    margin-top: 2.5rem;
}

.other-costs-title {
    font-size: 2rem;
    font-weight: 800;
    color: #191919;
    margin-bottom: 1rem;
    text-align: left;
}

.other-costs-row {
    align-items: center;
    row-gap: 1.5rem;
}

.other-costs-list {
    list-style-type: disc;
    margin: 0;
    padding-left: 1.2rem;
    font-size: 1rem;
    font-weight: 400;
}

.other-costs-list li {
    margin-bottom: 0.4rem;
}

.other-costs-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

@media (max-width: 768px) {
    .initial-costs {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .cost-col-item,
    .cost-col-amount {
        padding: 0.6rem 0.75rem;
    }

    .other-costs-title {
        font-size: 1.1rem;
    }

    .other-costs-list {
        font-size: 1rem;
    }
}

.procedure-steps {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.procedure-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.procedure-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 7rem;
}

.step-badge {
    color: #e14b4b;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.step-icon-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 999px;
    background-color: #00adcf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.step-icon-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.step-connector {
    width: 0;
    height: 4rem;
    border-left: 4px dotted #b0bec5;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.procedure-item-last .step-connector {
    display: none;
}

.procedure-right {
    flex: 1;
}

.procedure-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #191919;
    margin-bottom: 0.4rem;
}

.procedure-body {
    font-size: 1rem;
    line-height: 1.9;
    color: #191919;
    background-color: #f5f5f5;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
}

@media (max-width: 768px) {
    .procedure-item {
        gap: 1.25rem;
    }

    .procedure-left {
        min-width: 5.5rem;
    }

    .step-icon-circle {
        width: 4.2rem;
        height: 4.2rem;
    }

    .procedure-title {
        font-size: 1.1rem;
    }

    .procedure-body {
        font-size: 0.95rem;
    }
}

.join-faq {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.join-faq-item {
    border-bottom: 1px solid #e9edf2;
    overflow: hidden;
    transition: all 0.3s ease;
}

.join-faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.25rem 0;
    list-style: none;
}

.join-faq-summary::-webkit-details-marker {
    display: none;
}

.join-faq-heading {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-family: "M PLUS 1p", sans-serif;
}

.join-faq-q {
    color: #e14b4b;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.join-faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #191919;
    line-height: 1.6;
}

.join-faq-toggle {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.join-faq-toggle::before,
.join-faq-toggle::after {
    content: "";
    position: absolute;
    background-color: #00adcf;
    border-radius: 1px;
    transition: all 0.25s ease;
}

/* horizontal line */
.join-faq-toggle::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    transform: translateY(-50%);
}

/* vertical line */
.join-faq-toggle::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
}

.join-faq-item[open] .join-faq-toggle::after {
    opacity: 0;
}

.join-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.join-faq-item[open] .join-faq-body {
    max-height: 800px;
}

.join-faq-body p {
    margin: 0 0 1rem 2.2rem;
    line-height: 1.9;
    color: #191919;
    font-size: 1rem;
}

.join-faq-body p:last-child {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .join-faq-q {
        font-size: 1rem;
    }

    .join-faq-question {
        font-size: 1rem;
    }

    .join-faq-body p {
        margin-left: 1.5rem;
    }
}

.join-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f2f2f2;
    padding: 0.75rem 0;
    text-align: center;
    z-index: 9999;
}

.join-footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.4rem 1.8rem;
    color: #fff;
    background-color: #e14b4b;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.join-footer-cta-text {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: inherit;
}

.join-footer-cta-icon {
    height: 1.8em;
    width: auto;
    display: inline-block;
    object-fit: contain;
}
.join-footer-cta:hover {
    background-color: #c63f3f;
    color: #fff;
}

/* Request form */
.join-request {
    padding: 4rem 0;
}
.join-form {
    --blue: #00adcf;
    --red: #e14b4b;
    --gray: #f4f5f7;
    --line: #e6e6e6;
}
.join-form .jf-group {
    margin-bottom: 1.25rem;
}
.jf-label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.req-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.1rem 0.4rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}
.jf-input,
.join-form select,
.join-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 0.8rem 0.9rem;
    font: inherit;
    color: #191919;
    border-radius: 0;
    background: #fff;
}
.jf-input::placeholder,
.join-form textarea::placeholder {
    color: #9aa1a8;
}
.jf-input:focus,
.join-form select:focus,
.join-form textarea:focus {
    outline: 2px solid rgba(0, 173, 207, 0.2);
    border-color: var(--blue);
}
.jf-input-icon-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.jf-input-icon {
    background: #fff;
    border: 1px solid var(--line);
    padding: 0.8rem 0.7rem;
    line-height: 1;
    border-radius: 0;
}
.flex-1 {
    flex: 1;
}

.jf-note {
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.jf-note-red {
    color: var(--red);
}

.jf-radio-row {
    display: flex;
    gap: 1rem;
}
.jf-radio {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    user-select: none;
}
.jf-radio input {
    accent-color: var(--blue);
}

.jf-inline-after {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.jf-suffix {
    font-weight: 700;
}

.jf-actions {
    margin-top: 2rem;
    text-align: center;
}
.btn-red-blacktext {
    background: #e14b4b;
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0;
    display: inline-block;
}
.btn-red-blacktext:hover {
    filter: brightness(0.9);
}

@media (max-width: 575.98px) {
    .join-request {
        padding: 3rem 0;
    }
    .btn-red-blacktext {
        width: 100%;
    }
}

.footer-simple {
    padding: 2rem 0;
    background-color: #00adcf;
    text-align: center;
}

.footer-simple-inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    height: 100px;
    width: auto;
    max-width: 100%;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    padding-top: 2rem;
}
.footer-top {
    background-color: #00adcf !important;
}

.footer-wrapper {
    background-color: #00adcf !important;
}
@media (max-width: 768px) {
    .footer-logo {
        height: 48px;
    }
}
