/* =============================================================
   KIBO JAPANESE EDUCATION — Premium Redesign v3
   Cleaner hero · bolder cards · readable text · image badges
   ============================================================= */

:root {
    --ink: #0b0b0f;
    --ink-2: #1a1a22;
    --sumi: #3b3b46;
    --muted: #6b6b78;
    --paper: #fbfaf6;
    --paper-2: #f5efe7;
    --washi: #fff5ee;
    --akane: #d4111f;
    --akane-deep: #8a0a14;
    --akane-glow: #ff3a4a;
    --gold: #c9a14a;
    --line: rgba(11, 11, 15, .10);
    --line-2: rgba(11, 11, 15, .18);

    --serif: 'Shippori Mincho', 'Noto Serif JP', serif;
    --sans: 'Inter', system-ui, sans-serif;

    --shadow-soft: 0 14px 40px -22px rgba(11, 11, 15, .18);
    --shadow-card: 0 30px 70px -30px rgba(11, 11, 15, .32);
    --shadow-red: 0 22px 55px -20px rgba(212, 17, 31, .50);

    --grad-red: linear-gradient(135deg, #ff2d3d 0%, #d4111f 50%, #7d0612 100%);
    --grad-ink: linear-gradient(160deg, #13131a 0%, #000 100%);

    --radius: 18px;
    --radius-lg: 26px;
}

/* ----- BASE ------------------------------------------------- */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: var(--akane)
}

::selection {
    background: var(--akane);
    color: #fff
}

h1,
h2,
h3,
h4,
h5,
.serif {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -.012em;
    color: var(--ink)
}

h1 {
    font-size: clamp(2.4rem, 5.2vw, 3rem);
    line-height: 1.4;
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 1.1
}

h3 {
    font-size: clamp(1.35rem, 1.9vw, 1.6rem)
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--akane)
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--akane);
    border-radius: 2px
}

.lead-soft {
    color: var(--sumi);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 62ch
}

.text-akane {
    color: var(--akane) !important
}

/* ----- NAV -------------------------------------------------- */
.kibo-nav {
    padding: .85rem 0;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all .35s ease;
    z-index: 1030
}

.kibo-nav.scrolled {
    background: #fff;
    box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .18)
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-red);
    color: #fff;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 10px 22px -8px rgba(212, 17, 31, .6), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700
}

.brand-text small {
    font-size: .62rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sumi);
    margin-top: 4px;
    font-weight: 600
}

.nav-link {
    color: var(--ink-2) !important;
    font-weight: 500;
    font-size: .94rem;
    padding: .55rem 1rem !important;
    border-radius: 10px;
    position: relative
}

.nav-link.active {
    color: var(--akane) !important
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--akane);
    transition: all .35s ease;
    transform: translateX(-50%);
    border-radius: 2px
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 22px
}

/* ----- BUTTONS --------------------------------------------- */
.btn {
    font-weight: 600;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    letter-spacing: .01em;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: none
}

.btn i {
    transition: transform .35s ease
}

.btn:hover i {
    transform: translateX(4px)
}

.btn-glow {
    background: var(--grad-red);
    color: #fff;
    box-shadow: 0 12px 30px -10px rgba(212, 17, 31, .65)
}

.btn-glow:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 45px -12px rgba(255, 58, 74, .85)
}

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line-2)
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px)
}

.btn-ink {
    background: var(--ink);
    color: #fff
}

.btn-ink:hover {
    background: var(--akane);
    color: #fff;
    transform: translateY(-2px)
}

.kibo-nav .btn-glow {
    padding: .6rem 1.2rem;
    font-size: .85rem
}

/* ----- HOME HERO ------------------------------------------- */
.home-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fffaf4 0%, #fbfaf6 60%, #f6f1ea 100%);
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920&q=80') center/cover;
    opacity: .18;
    mask-image: linear-gradient(180deg, #000 25%, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, #000 25%, transparent 92%)
}

.home-hero .kanji-bg {
    position: absolute;
    right: -2vw;
    top: 8vh;
    font-family: var(--serif);
    font-size: clamp(18rem, 36vw, 42rem);
    color: rgba(212, 17, 31, .05);
    line-height: .85;
    font-weight: 700;
    pointer-events: none;
    user-select: none
}

.home-hero .container {
    position: relative;
    z-index: 2
}

.hero-tag {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .5rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    color: var(--ink-2);
    font-weight: 600;
    box-shadow: 0 6px 18px -10px rgba(0, 0, 0, .15)
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--akane);
    box-shadow: 0 0 0 4px rgba(212, 17, 31, .22);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(212, 17, 31, .22)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 17, 31, 0)
    }
}

.home-hero h1 .accent {
    background: var(--grad-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line)
}

.hero-stats .num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--ink);
    font-weight: 700
}

.hero-stats .lbl {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .3rem;
    font-weight: 600
}

@media(max-width:768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ----- PAGE HERO (subpages) — SIMPLE & CLEAN --------------- */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #0b0b0f;
    overflow: hidden;
    border-bottom: 1px solid var(--line)
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-img, url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1920&q=80')) center/cover;
    filter: saturate(1.05) brightness(.85)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 7, 12, .45) 0%, rgba(7, 7, 12, .65) 60%, rgba(7, 7, 12, .92) 100%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem
}

.hero-title {
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
    max-width: 20ch;
    line-height: 1.06;
    font-weight: 700;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .45)
}

.hero-sub {
    color: rgba(255, 255, 255, .92);
    max-width: 60ch;
    margin-top: 1rem;
    font-size: 1.06rem;
    line-height: 1.65;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.kibo-crumbs {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.4rem;
    padding: .45rem .9rem;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-weight: 600
}

.kibo-crumbs a {
    color: rgba(255, 255, 255, .8)
}

.kibo-crumbs a:hover {
    color: #fff
}

.kibo-crumbs span {
    color: #fff;
    font-weight: 700
}

/* hero-fade removed — hero now ends cleanly without bleeding into next section */
.hero-fade {
    display: none
}

/* ----- ICON IMAGE BADGES (replaces text-like icon glyphs) -- */
.ico-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: var(--grad-red);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 14px 28px -10px rgba(212, 17, 31, .55), inset 0 1px 0 rgba(255, 255, 255, .3);
    margin-bottom: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.ico-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, .4), transparent 60%)
}

.ico-badge i {
    position: relative;
    z-index: 1
}

.ico-badge.soft {
    background: #fff7f1;
    color: var(--akane);
    box-shadow: 0 10px 22px -10px rgba(212, 17, 31, .25), inset 0 0 0 1px rgba(212, 17, 31, .18)
}

.ico-badge.dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .35)
}

.glass-card:hover .ico-badge,
.card-x:hover .ico-badge {
    transform: rotate(-6deg) scale(1.06)
}

/* ----- CARDS (universal) ------------------------------------ */
.glass-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.9rem;
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden
}

.glass-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent
}

.glass-card:hover::before {
    transform: scaleX(1)
}

.glass-card h3,
.glass-card h4,
.glass-card h5 {
    color: var(--ink);
    margin-bottom: .5rem
}

.glass-card p,
.glass-card .lead-soft {
    color: var(--sumi)
}

/* About-style mission/vision cards: stronger left accent */
.glass-card .eyebrow {
    margin-bottom: .4rem
}

/* ----- BENTO (Why Kibo) ------------------------------------- */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.3rem
}

.bento .card-x {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.9rem;
    border: 1px solid var(--line);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft)
}

.bento .card-x::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease
}

.bento .card-x:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 30px 70px -28px rgba(212, 17, 31, .32)
}

.bento .card-x:hover::after {
    transform: scaleX(1)
}

.bento .card-x h4 {
    color: var(--ink);
    margin-bottom: .5rem;
    font-size: 1.25rem
}

.bento .card-x p {
    color: var(--sumi);
    margin: 0
}

/* Removed giant kana watermarks that hurt readability */
.bento .card-x .kana,
.course-card .kana {
    display: none
}

.bento .span-3 {
    grid-column: span 3
}

.bento .span-2 {
    grid-column: span 2
}

.bento .span-4 {
    grid-column: span 4
}

.bento .span-6 {
    grid-column: span 6
}

@media(max-width:900px) {
    .bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .bento .span-3,
    .bento .span-2,
    .bento .span-4,
    .bento .span-6 {
        grid-column: span 2
    }
}

/* ----- COURSE CARDS — bolder, clearer ----------------------- */
.course-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem 1.6rem 1.7rem;
    overflow: hidden;
    height: 100%;
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    box-shadow: var(--shadow-soft)
}

.course-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    /* background: var(--grad-red); */
    border-radius: 22px 22px 0 0
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 35px 70px -25px rgba(212, 17, 31, .35)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    padding: .42rem .9rem;
    background: var(--grad-red);
    border-radius: 999px;
    margin-bottom: .9rem;
    font-weight: 700;
    box-shadow: 0 6px 14px -6px rgba(212, 17, 31, .55)
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1rem;
    color: var(--sumi);
    font-size: .86rem;
    margin: .6rem 0 1rem;
    font-weight: 500
}

.course-meta i {
    color: var(--akane);
    margin-right: .3rem
}

.course-card h3 {
    font-size: 1.4rem;
    margin: .1rem 0 .3rem;
    color: var(--ink)
}

.course-card p {
    color: var(--sumi) !important;
    font-size: .93rem;
    line-height: 1.6
}

.course-price {
    font-family: var(--serif);
    font-size: 1.85rem;
    color: var(--akane);
    margin-top: .9rem;
    font-weight: 700;
    line-height: 1
}

.course-price small {
    font-size: .78rem;
    color: var(--muted);
    font-family: var(--sans);
    font-weight: 500;
    margin-left: .15rem
}

.course-card a,
.course-card .text-akane {
    color: var(--akane) !important;
    font-weight: 600
}

/* Course card link wrapper */
a.d-block:hover {
    color: inherit
}

/* ----- STATS ----------------------------------------------- */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    position: relative
}

.stat-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 4px;
    background: var(--grad-red)
}

.stat-row .stat {
    padding: 2.4rem 1rem;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background .35s
}

.stat-row .stat:hover {
    background: var(--washi)
}

.stat-row .stat:last-child {
    border-right: none
}

.stat-row .num {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    background: var(--grad-red);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    font-weight: 700
}

.stat-row .lbl {
    margin-top: .55rem;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600
}

@media(max-width:768px) {
    .stat-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-row .stat:nth-child(2) {
        border-right: none
    }

    .stat-row .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }
}

/* ----- TIMELINE -------------------------------------------- */
.timeline {
    position: relative;
    padding-left: 0
}

.timeline::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--akane), rgba(212, 17, 31, .1) 90%, transparent)
}

.tl-step {
    position: relative;
    padding: .4rem 0 2.2rem 4rem;
    transition: transform .35s
}

.tl-step:hover {
    transform: translateX(4px)
}

.tl-step .dot {
    position: absolute;
    left: 9px;
    top: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--akane);
    display: grid;
    place-items: center;
    color: var(--akane);
    font-weight: 700;
    font-size: .78rem;
    box-shadow: 0 0 0 5px rgba(212, 17, 31, .10);
    transition: all .35s
}

.tl-step:hover .dot {
    background: var(--grad-red);
    color: #fff;
    transform: scale(1.08)
}

.tl-step h5 {
    font-family: var(--serif);
    margin-bottom: .35rem;
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--ink)
}

.tl-step p {
    color: var(--sumi);
    margin: 0;
    line-height: 1.7
}

/* ----- TESTIMONIALS — photo avatars ------------------------ */
.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.9rem;
    height: 100%;
    position: relative;
    transition: all .4s;
    overflow: hidden;
    box-shadow: var(--shadow-soft)
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -22px;
    right: 18px;
    font-family: var(--serif);
    font-size: 6rem;
    color: rgba(212, 17, 31, .14);
    line-height: 1;
    font-weight: 700
}

.testimonial::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--grad-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent
}

.testimonial:hover::after {
    transform: scaleX(1)
}

.testimonial p {
    color: var(--ink-2);
    line-height: 1.75;
    font-size: 1rem
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: .95rem;
    margin-top: 1.4rem
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--grad-red);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--serif);
    font-weight: 700;
    box-shadow: 0 8px 18px -8px rgba(212, 17, 31, .55);
    border: 2px solid #fff;
    outline: 1px solid var(--line)
}

img.avatar {
    padding: 0
}

.testi-meta .name {
    font-weight: 700;
    color: var(--ink)
}

.testi-meta .role {
    font-size: .78rem;
    color: var(--muted)
}

.stars {
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: .1em
}

/* ----- PARTNERS -------------------------------------------- */
.partner-strip {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scroll 36s linear infinite;
    width: max-content;
    padding: 1rem 0
}

.partner-strip span {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--sumi);
    white-space: nowrap;
    opacity: .85;
    padding: .55rem 1.2rem;
    border: 1px dashed var(--line-2);
    border-radius: 12px;
    transition: all .35s
}

.partner-strip span:hover {
    color: var(--akane);
    border-color: var(--akane);
    opacity: 1
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

/* ----- FAQ ------------------------------------------------- */
.accordion-item {
    background: #fff;
    border: 1px solid var(--line) !important;
    margin-bottom: .9rem;
    border-radius: 14px !important;
    overflow: hidden;
    transition: all .35s
}

.accordion-item:hover {
    border-color: rgba(212, 17, 31, .25) !important
}

.accordion-button {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--ink);
    padding: 1.2rem 1.4rem;
    background: #fff !important;
    box-shadow: none !important;
    font-size: 1.02rem
}

.accordion-button:not(.collapsed) {
    color: var(--akane);
    background: #fff7f1 !important
}

.accordion-body {
    color: var(--sumi);
    line-height: 1.75;
    padding: 0 1.4rem 1.3rem
}

/* ----- CTA ------------------------------------------------- */
.cta-block {
    position: relative;
    background: var(--grad-ink);
    color: #fff;
    border-radius: 28px;
    padding: clamp(2.4rem, 5.5vw, 4.5rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06)
}

.cta-block::before {
    content: "希";
    position: absolute;
    right: -2rem;
    bottom: -7rem;
    font-family: var(--serif);
    font-size: 24rem;
    color: rgba(212, 17, 31, .18);
    line-height: 1;
    font-weight: 700;
    pointer-events: none
}

.cta-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 0%, rgba(212, 17, 31, .30), transparent 55%);
    pointer-events: none
}

.cta-block h2 {
    color: #fff
}

.cta-block .lead-soft {
    color: rgba(255, 255, 255, .82)
}

.cta-inner {
    position: relative;
    z-index: 2
}

/* ----- COURSE DETAILS -------------------------------------- */
.course-hero-card {
    background: linear-gradient(135deg, #fff, var(--washi));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden
}

.course-hero-card .price-tag {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    background: var(--grad-red);
    color: #fff;
    padding: .6rem 1.1rem;
    border-radius: 12px;
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 22px -10px rgba(212, 17, 31, .6)
}

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

.outcome-list li {
    padding: .75rem 0;
    border-bottom: 1px dashed var(--line);
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    color: var(--ink-2);
    font-weight: 500
}

.outcome-list li:last-child {
    border-bottom: none
}

.outcome-list i {
    color: var(--akane);
    margin-top: 5px;
    font-size: 1.1rem
}

.video-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card)
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .9rem
}

.gallery img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
    transition: all .5s cubic-bezier(.2, .8, .2, 1);
    cursor: pointer
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-card)
}

@media(max-width:768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ----- LIFE GRID ------------------------------------------- */
.life-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: .9rem
}

.life-grid .tile {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #222
}

.life-grid .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .8, .2, 1)
}

.life-grid .tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .75));
    z-index: 1
}

.life-grid .tile:hover img {
    transform: scale(1.1)
}

.life-grid .tile::after {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    bottom: 12px;
    color: #fff;
    font-family: var(--serif);
    font-size: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
    z-index: 2;
    font-weight: 600
}

.life-grid .tall {
    grid-row: span 2
}

.life-grid .wide {
    grid-column: span 2
}

@media(max-width:900px) {
    .life-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ----- FORM ------------------------------------------------ */
.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid var(--line-2);
    padding: .9rem 1.05rem;
    background: #fff;
    font-size: .96rem;
    color: var(--ink);
    transition: all .3s
}

.form-control:focus,
.form-select:focus {
    border-color: var(--akane);
    box-shadow: 0 0 0 4px rgba(212, 17, 31, .12);
    background: #fff
}

.form-label {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: .4rem
}

/* ----- FOOTER --------------------------------------------- */
.kibo-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0a10 0%, #1a060a 55%, #2a0810 100%);
    color: #fff;
    overflow: hidden;
}

.kibo-footer::before {
    content: "希望";
    position: absolute;
    left: -3rem;
    bottom: -7rem;
    font-family: var(--serif);
    font-size: 20rem;
    color: rgba(212, 17, 31, .07);
    font-weight: 700;
    line-height: 1;
    pointer-events: none
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 17, 31, .35), transparent 70%);
    pointer-events: none
}

.kibo-footer .container {
    position: relative;
    z-index: 1
}

.kibo-footer h6 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1.1rem;
    font-weight: 700
}

.brand-light .brand-text strong {
    color: #fff
}

.brand-light .brand-text small {
    color: rgba(255, 255, 255, .7)
}

.text-muted-light {
    color: rgba(255, 255, 255, .72);
    line-height: 1.75
}

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

.footer-list li {
    margin-bottom: .55rem
}

.footer-list a {
    color: rgba(255, 255, 255, .78);
    font-size: .93rem;
    transition: all .3s
}

.footer-list a:hover {
    color: var(--akane-glow);
    padding-left: 6px
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    transition: all .35s
}

.social-btn:hover {
    background: var(--grad-red);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent
}

.footer-divider {
    border-color: rgba(255, 255, 255, .12);
    margin: 2.4rem 0 1.4rem
}

/* ----- WHATSAPP FLOAT ------------------------------------- */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7);
    z-index: 999;
    transition: transform .35s
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .45);
    animation: ring 2s infinite
}

@keyframes ring {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

/* ----- REVEAL ANIMATIONS ----------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ----- DIVIDER --------------------------------------------- */
.divider-jp {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
    font-family: var(--serif);
    justify-content: center;
    margin: .6rem 0 2rem;
    font-size: .95rem
}

.divider-jp::before,
.divider-jp::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
    max-width: 90px
}

/* ----- MAP ------------------------------------------------- */
.map-card {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f3efe9, #fff);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--sumi);
    font-family: var(--serif);
    position: relative;
    overflow: hidden
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1545569341-9eb8b30979d9?w=1200&q=80') center/cover;
    opacity: .35
}

.map-card span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: .7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: .95rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft)
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

.course-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.course-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
    display: block;
}

/* ----- MESSAGE SECTION ------------------------------------- */
.message-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
}

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

.message-row .msg-logo {
    flex-shrink: 0;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    text-align: center;
}

.message-row .msg-logo img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 6px;
    background: #fff;
}

.message-row .msg-role {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--akane);
    font-weight: 700;
    white-space: nowrap;
}

.message-row .msg-content {
    flex: 1;
}

.message-row .msg-content blockquote {
    margin: 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--akane);
    color: var(--sumi);
    font-size: 1rem;
    line-height: 1.9;
    font-style: italic;
}

@media(max-width: 768px) {
    .message-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .message-row .msg-logo {
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .message-row .msg-logo img {
        width: 110px;
        height: 110px;
    }
}

/* =========================
   GALLERY SECTION
========================= */
.gallery-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-card__inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--washi);
    box-shadow: 0 2px 8px rgba(11, 11, 15, 0.08);
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card__inner {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 11, 15, 0.12);
}

.gallery-card__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card__inner img {
    transform: scale(1.05);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(11, 11, 15, 0.1) 40%,
        rgba(11, 11, 15, 0.75) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.gallery-card__title {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Video Specific Styles */
.gallery-card--video .gallery-card__overlay {
    justify-content: center;
    opacity: 1;
    background: linear-gradient(
        180deg,
        rgba(11, 11, 15, 0.3) 0%,
        rgba(11, 11, 15, 0.5) 100%
    );
}

.gallery-card--video:hover .gallery-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(11, 11, 15, 0.4) 0%,
        rgba(11, 11, 15, 0.6) 100%
    );
}

.gallery-card--video .gallery-card__title {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
}

.gallery-card__play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gallery-card--video:hover .gallery-card__play {
    transform: scale(1.1);
    background: #fff;
}

.gallery-card__play i {
    font-size: 1.5rem;
    color: var(--ink);
    padding-left: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-card__play {
        width: 50px;
        height: 50px;
    }
    
    .gallery-card__play i {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .gallery-card__title {
        font-size: 0.85rem;
    }
}

/* =============================================
   TEAM CARDS (Homepage section)
   ============================================= */
.team-card {
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.team-card__img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--washi);
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.team-card:hover .team-card__img img {
    transform: scale(1.07);
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 3.5rem;
    color: var(--muted);
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity .35s;
}

.team-card:hover .team-card__overlay {
    opacity: 1;
}

.team-card__body {
    padding: 1rem 1.1rem 1.2rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.team-card__body h5 {
    font-size: 1rem;
    margin-bottom: .2rem;
    color: var(--ink);
}

.team-card__body p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
    letter-spacing: .04em;
}

/* Team Modal */
.team-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.team-modal-img-wrap {
    position: relative;
    height: 300px;
    background: var(--washi);
    overflow: hidden;
}

.team-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-modal-img-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 6rem;
    color: var(--muted);
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    border: none;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .25s;
}

.team-modal-close:hover { background: var(--akane); }

.team-modal-body {
    padding: 1.8rem 2rem 2rem;
}

.team-modal-body h4 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.team-modal-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem;
}

.team-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line-2);
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    transition: all .3s;
}

.team-contact-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.team-contact-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* =============================================
   BLOG CARDS (Homepage + Listing page)
   ============================================= */
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all .4s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.blog-card__img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.06);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: var(--muted);
}

.blog-card__cat {
    position: absolute;
    top: .85rem;
    left: .85rem;
    background: var(--grad-red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px -4px rgba(212,17,31,.55);
}

.blog-card__body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .04em;
}

.blog-card__meta i { color: var(--akane); margin-right: .25rem; }

.blog-card__body h4 {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: .6rem;
    color: var(--ink);
}

.blog-card__excerpt {
    color: var(--sumi);
    font-size: .9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--akane);
    font-weight: 700;
    font-size: .88rem;
    margin-top: auto;
    transition: gap .3s;
}

.blog-card:hover .blog-card__link { gap: .7rem; }

/* Blog detail content area */
.blog-content {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--sumi);
}

.blog-content h2, .blog-content h3, .blog-content h4 {
    font-family: var(--serif);
    color: var(--ink);
    margin-top: 2rem;
    margin-bottom: .8rem;
}

.blog-content p { margin-bottom: 1.3rem; }

.blog-content img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin: 1.5rem 0;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.blog-content li { margin-bottom: .4rem; }

.blog-content blockquote {
    border-left: 3px solid var(--akane);
    padding: .8rem 1.4rem;
    margin: 1.5rem 0;
    background: var(--washi);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--ink);
}

/* Related blog sidebar items */
.related-blog-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    transition: color .25s;
}

.related-blog-item:last-child { border-bottom: none; }
.related-blog-item:hover { color: var(--akane); }

.related-blog-item img,
.related-blog-item__ph {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--washi);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 1.4rem;
}

/* Leader Message Rows */
.leader-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    background: var(--surface-color, #fff);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.leader-row--reverse {
    flex-direction: row-reverse;
}

.leader-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 160px;
}

.leader-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--akane, #c0392b);
    box-shadow: 0 0 0 6px rgba(192,57,43,0.1);
    margin-bottom: 16px;
}

.leader-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.leader-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--akane, #c0392b);
    margin-bottom: 4px;
}

.leader-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color, #1a1a1a);
    text-align: center;
}

.leader-quote-col {
    position: relative;
    flex: 1;
    padding-top: 8px;
}

.big-quote {
    font-size: 120px;
    line-height: 0.6;
    color: var(--akane, #c0392b);
    opacity: 0.12;
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: -10px;
    pointer-events: none;
    user-select: none;
}

.leader-quote-col blockquote {
    font-style: italic;
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid var(--akane, #c0392b);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .leader-row,
    .leader-row--reverse {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        gap: 24px;
    }

    .leader-img-col {
        width: 100%;
    }

    .big-quote {
        font-size: 80px;
    }
}
/* ----- HERO VISA PILLS ------------------------------------- */
.hero-visa-pills {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.5rem;
}

.hero-visa-pill {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    padding: .65rem 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 4px 14px -8px rgba(11,11,15,.12);
    transition: all .3s ease;
    max-width: 380px;
}

.hero-visa-pill:hover {
    border-color: var(--akane);
    box-shadow: 0 6px 20px -8px rgba(212,17,31,.25);
    transform: translateX(4px);
}

.hero-visa-pill__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--grad-red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -6px rgba(212,17,31,.5);
}

.hero-visa-pill__title {
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    line-height: 1.2;
}

.hero-visa-pill__sub {
    font-size: .74rem;
    color: var(--muted);
    margin-top: .1rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .hero-visa-pill {
        max-width: 100%;
    }
}