:root {
    --yellow: #f1cd2a;
    --yellow-deep: #ffd100;
    --orange: #f1802a;
    --orange-soft: #ffb200;
    --black: #323333;
    --gray-1: #b1b1b1;
    --gray-2: #f3f3f3;
    --gray-3: #6d6d6d;
    --white: #ffffff;
    --blue: #8ce6ff;
    --red: #ff9582;
    --line: rgba(50, 51, 51, 0.12);
    --shadow: 0 18px 45px rgba(50, 51, 51, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 1280px;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--black);
    background: #fffef8;
}

html.is-menu-open,
body.is-menu-open {
    width: 100%;
    overflow: hidden;
}

body.is-menu-open {
    position: fixed;
    left: 0;
    right: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.u-sp {
    display: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(50, 51, 51, 0.1);
    box-shadow: 0 4px 18px rgba(50, 51, 51, 0.08);
}

.site-header.is-menu-open {
    background: #fff;
    border-bottom-color: rgba(50, 51, 51, 0.1);
}

.container.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 80px), 1360px);
    height: auto;
    padding: 24px 0 18px;
}

.logo {
    display: block;
    width: 160px;
}

.header-logo {
    display: block;
    flex: 0 0 auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-nav a {
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
    color: var(--orange);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 276px;
    height: 54px;
    margin-left: 28px;
    padding: 0 18px 0 0;
    border-radius: 2px;
    background: var(--yellow);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease;
}

.header-cta:hover {
    background: var(--orange);
    color: #fff;
}

.header-cta > img {
    width: 12px;
}

.cta-chevron {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 1px;
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.header-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    min-width: 82px;
    padding: 0 10px;
    background: #fff;
    border: 2px solid var(--yellow);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 10px;
    line-height: 1.2;
    transition:
        border-color 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease;
}

.header-cta:hover .header-cta-badge,
.header-cta-badge:hover {
    border-color: var(--orange);
    color: var(--black);
}

.header-cta-badge img {
    width: 24px;
}

.header-cta-badge strong {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    z-index: 0;
}

.header-cta-badge strong::after {
    content: "";
    position: absolute;
    left: -0.04em;
    right: -0.18em;
    bottom: -0.02em;
    height: 0.18em;
    background: var(--yellow);
    z-index: -1;
}

.header-cta-badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    white-space: nowrap;
}

.header-cta-badge-former {
    font-size: 12px;
}

.header-cta-badge-later {
    font-size: 16px;
    justify-content: center;
}

.header-cta-badge-later strong {
    font-size: 24px;
}

.header-cta-badge-later {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.site-header.is-scrolled .header-nav,
.site-header.is-scrolled .header-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    padding: 120px 0 50px;
    background:
        radial-gradient(circle at 34% 8%, rgba(241, 205, 42, 0.42), transparent 26%),
        radial-gradient(circle at 88% 32%, rgba(241, 205, 42, 0.38), transparent 24%),
        radial-gradient(circle at 61% 82%, rgba(241, 205, 42, 0.2), transparent 22%),
        linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: rgba(241, 205, 42, 0.3);
    filter: blur(54px);
    pointer-events: none;
}

.hero::before {
    top: -84px;
    left: 340px;
    width: 360px;
    height: 250px;
}

.hero::after {
    right: -100px;
    bottom: 10px;
    width: 420px;
    height: 360px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    margin: 0 0 30px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
}

.hero-kicker span {
    color: var(--yellow);
}

.hero-title {
    margin: 0;
}

.hero-title > span {
    display: block;
    margin-bottom: 22px;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
}

.hero-title strong {
    display: block;
    font-size: 64px;
    line-height: 1.6;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-strong-line {
    display: block;
    white-space: nowrap;
}

.hero-title em {
    display: inline-block;
    margin: 0 6px;
    padding: 4px 20px;
    border: 1px solid #B1B1B1;
    border-radius: 6px;
    font-style: normal;
    background-color: #FFFFFF;
}

.hero-title em::before {
    content: "";
    display: inline-block;
    width: 48px;
    height: 32px;
    margin-right: 16px;
    border-left: 8px solid var(--yellow);
    border-bottom: 8px solid var(--yellow);
    transform: translateY(-15px) rotate(-45deg) ;
}

.hero-text {
    width: 100%;
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
}

.cta-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
    margin-top: 30px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 300px;
    min-height: 74px;
    padding: 0 30px;
    border: 1px solid rgba(50, 51, 51, 0.16);
    font-size: 16px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn img {
    width: 22px;
    height: auto;
}

.btn .cta-chevron {
    width: 10px;
    height: 10px;
}

.hero .cta-row {
    gap: 24px;
    margin-top: 65px;
}

.hero .btn {
    min-height: 84px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 900;
    border-radius: 4px;
    z-index: 9999;
}

.hero .btn img {
    width: 20px;
    height: auto;
}

.hero-secondary-cta > img {
    width: 20px;
    height: 18px;
    object-fit: contain;
}

.btn-primary {
    background: var(--yellow);
    min-width: 373px;
    gap: 30px;
}

.btn-secondary {
    min-width: 324px;
    gap: 54px;
    background: #fff;
    border: 1px solid #848484;
    padding: 23px 34px 23px 30px;
    justify-content: space-between;
}

.btn-secondary.light {
    background: var(--white);
}

.btn.compact {
    min-width: 430px;
    min-height: 70px;
}

.note-badge {
    --note-badge-width: 166px;
    position: absolute;
    top: -17px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--note-badge-width);
    height: calc(var(--note-badge-width) * 59 / 166);
    box-sizing: border-box;
    gap: 6px;
    padding: 5px 11px 11px;
    background: url("img/Vector.png") center / 100% 100% no-repeat;
    font-size: 12px;
    font-weight: 900;
}

.note-badge img {
    width: 18px;
}

.hero-note-badge {
    top: -23px;
    left: 0;
    z-index: 2;
    gap: 4px;
    padding: 5px 12px 22px;
    border: 0;
    box-shadow: none;
    color: var(--black);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    align-items: end;
}

.hero-note-badge::after {
    content: none;
}

.hero .btn .hero-note-badge img {
    width: 18px;
    height: 22px;
    padding: 0;
    object-fit: contain;
}

.hero-note-badge .hero-note-text {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-note-badge strong {
    display: inline-block;
    padding: 0 2px 1px;
    background: linear-gradient(transparent 70%, var(--yellow) 0);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.hero-note-badge strong span {
    font-size: 18px;
    line-height: 1;
}


.hero-visual {
    position: relative;
    min-height: 640px;
    overflow: visible;
}

.hero-photo-stack {
    position: absolute;
    top: -252px;
    right: -100px;
    transform: rotate(14deg);
    transform-origin: top center;
}

.hero-photo-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: heroPhotoStackScroll 96s linear infinite;
    will-change: transform;
}

.hero-strip {
    position: relative;
    width: 256px;
    aspect-ratio: 1179 / 2126;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(50, 51, 51, 0.16);
}

.hero-strip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes heroPhotoStackScroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(calc(-50% - 10px));
    }
}

@keyframes heroPhotoTrackSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}

.strip-top img {
    object-position: center top;
}

.strip-middle img {
    object-position: center center;
}

.strip-bottom img {
    object-position: center bottom;
}

.strip-top {
    aspect-ratio: 1179 / 2126;
}

.strip-middle {
    z-index: 1;
}

.strip-bottom {
    aspect-ratio: 1179 / 2126;
}

.stat-ball {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--yellow);
    text-align: center;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    line-height: 1.4;
    box-shadow: 0 12px 24px rgba(241, 205, 42, 0.3);
}

.stat-ball strong {
    display: block;
    font-size: 34px;
}

.stat-ball strong span {
    font-size: 45px;
}

.stat-ball-a {
    top: 12px;
    left: 2px;
}

.stat-ball-b {
    top: 104px;
    right: -111px;
}

.stat-ball-c {
    top: 330px;
    left: -90px;
}

.stat-ball-d {
    bottom: 50px;
    right: -15px;
}

.section-heading {
    text-align: center;
}

.section-title-fade {
    font-family: "Outfit", sans-serif;
    margin: 0;
    font-size: 80px;
    line-height: 1.6;
    font-weight: 700;
    background: linear-gradient(180deg, #faefb9 0%, #f1cd2a 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.section-title-fade.white {
    color: var(--white);
}

.section-title-fade.small {
    font-size: 72px;
}

.section-subtitle {
    /* margin: 4px 0 0; */
    margin: -20px 0 0;
    font-size: 34px;
    line-height: 1.6;
    font-weight: 900;
}

.section-subtitle.white {
    color: var(--white);
}

.section-description {
    width: 860px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 700;
}

.section-description.narrow {
    width: 720px;
}

.about {
    background:
        linear-gradient(
            180deg,
            rgba(241, 205, 42, 0) 0%,
            rgba(241, 205, 42, 0) 31%,
            rgba(241, 205, 42, 0.3) 67%,
            rgba(241, 205, 42, 1) 100%
        ),
        #fff;
    padding: 38px 0 30px;
    overflow: visible;
}

.plan {
    background: linear-gradient(180deg, #fcf3bb 0%, #ffffff 100%);
    padding: 100px 0 40px;
}

.about::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -124px;
    width: 100%;
    height: 124px;
    background: var(--yellow);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 2;
}

.about-grid,
.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 60px;
}

.about-card,
.result-card {
    padding: 40px 28px;
    background: #fff;
    border: 4px solid var(--yellow);
    border-radius: 24px;
}

.about-card {
    padding: 40px 24px;
}

.about-card-image {
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    width: 142px;
    height: 142px;
    aspect-ratio: 1;
}

.about-card-image img {
    display: block;
}

.about-card img,
.result-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.about-card:nth-child(2) .about-card-image img,
.about-card:nth-child(3) .about-card-image img {
    width: 74px;
    height: auto;
}

.about-card h3,
.result-card h3 {
    margin: 18px 0 20px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 900;
    text-align: center;
}

.about-card h3 {
    width: fit-content;
    margin-inline: auto;
    background: linear-gradient(transparent calc(100% - 10px), var(--yellow) 0);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.about-card ul {
    width: fit-content;
    margin: 0;
    padding-left: 0;
    margin-inline: auto;
}

.about-card ul li,
.result-card p {
    position: relative;
    list-style-type: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.about-card ul li {
    padding-left: 14px;
}

.about-card ul li:not(:first-child) {
    margin-top: 14px;
}

.about-card ul li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
}

.about-message {
    background-color: var(--white);
    max-width: 1040px;
    padding: 30px 67.5px;
    margin-inline: auto;
    border-radius: 16px;
    margin-top: 60px;
}

.about-message p {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.8;
}

.what,
.results,
.flow,
.report,
.voices {
    padding: 40px 0 80px;
    background: #fff;
}

.what {
    background:
        url("img/background-dark-geometric.png") center / cover no-repeat,
        var(--black);
    padding: 151px 0 100px;
}

.what .section-title-fade,
.report .section-title-fade {
    background: linear-gradient(0deg, rgba(241, 205, 42, 1) 0%, rgba(241, 205, 42, 0) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.what-heading {
    padding: 0;
}

.what-subtitle {
    color: var(--white);
}

.what-description {
    color: var(--white);
}

.what-flows,
.what-columns {
    position: relative;
    padding: 14px 24px 22px;
    border: 2px solid var(--yellow);
    border-radius: 8px;
}

.what-flows {
    margin-top: 60px;
    padding: 30px 100px 40px;
}

.what-columns {
    margin-top: 40px;
    padding: 30px 100px 40px;
}

.what-flows h3,
.what-columns h3 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.what-flows h3::before,
.what-columns h3::before {
    content: "•";
    display: inline-block;
    margin-right: 4px;
    color: var(--yellow);
}

.what-flow-track {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
    margin: 28px auto 0;
}

.what-flow-track p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 176px;
    min-height: 68px;
    margin: 0;
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.what-flow-track p:last-child {
    flex-basis: 288px;
    border: 2px solid var(--yellow);
    text-decoration-line: underline;
    text-decoration-color: var(--yellow);
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}

.what-flow-track img {
    width: 24px;
    margin: 0 8px;
    flex: 0 0 24px;
}

.what-flow-track img {
    width: 36px;
    margin: 0 auto;
}

.what-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    max-width: 1080px;
    margin: 28px auto 0;
}

.what-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 8px;
    background: var(--white);
    border: none;
}

.what-number {
    display: none;
}

.what-card h4 {
    margin: 0;
    padding: 12px 0;
    background: var(--yellow);
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.what-card ul {
    margin: 0;
    padding: 18px 20px 16px;
    list-style: none;
    line-height: 1.6;
    font-weight: 700;
    font-size: 16px;
}

.what-card li:not(:first-child) {
    margin-top: 6px;
}

.what-card li span {
    white-space: nowrap;
}

.reasons {
    padding: 40px 0 100px;
    background:
        linear-gradient(
            180deg,
            rgba(241, 205, 42, 0) 0%,
            rgba(241, 205, 42, 0) 16%,
            rgba(241, 205, 42, 1) 100%
        );
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin: 60px auto 0;
}

.reason-carousel {
    display: contents;
}

.reason-card {
    display: flex;
    flex-direction: column;
    padding: 21px 25px 35px;
    border: 6px solid var(--yellow);
    border-radius: 18px;
    background: #fff;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
}

.js .reasons .reason-card:not([data-carousel-clone]) {
    opacity: 0;
    transform: translateX(-28px);
}

.js .reasons.is-visible .reason-card:not([data-carousel-clone]) {
    animation: reasonCardIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .reasons.is-visible .reason-carousel-sns .reason-card:nth-of-type(1) {
    animation-delay: 0s;
}

.js .reasons.is-visible .reason-carousel-sns .reason-card:nth-of-type(2) {
    animation-delay: 0.12s;
}

.js .reasons.is-visible .reason-carousel-sns .reason-card:nth-of-type(3) {
    animation-delay: 0.24s;
}

.js .reasons.is-visible .reason-carousel-hr .reason-card:nth-of-type(1) {
    animation-delay: 0.36s;
}

.js .reasons.is-visible .reason-carousel-hr .reason-card:nth-of-type(2) {
    animation-delay: 0.48s;
}

.js .reasons.is-visible .reason-carousel-hr .reason-card:nth-of-type(3) {
    animation-delay: 0.6s;
}

.reason-card[data-carousel-clone] {
    opacity: 1;
    transform: none;
}

@keyframes reasonCardIn {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reason-card.orange {
    border-color: var(--orange-soft);
}

.reason-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-soft);
    text-align: center;
}


.reason-number {
    font-family: "Outfit", sans-serif;
    font-size: 50px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04rem;
    color: var(--yellow);
}

.reason-card.orange .reason-number {
    color: var(--orange-soft)
}

.reason-strength {
    font-family: "Outfit", sans-serif;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--yellow);
    border-block: 1px solid currentcolor;
}

.reason-card.orange .reason-strength {
    color: var(--orange-soft)
}

.reason-card h3 {
    margin: 18px 0 14px;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 900;
    text-align: center;
}

.reason-card h3 .reason-title-large {
    font-size: 28px;
}

.reason-card strong {
    font-size: 56px;
    line-height: 1.6;
    font-weight: 900;
    background: linear-gradient(transparent calc(100% - 18px), var(--yellow) 0 calc(100% - 2px), transparent 0);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.reason-card.orange strong {
    background-image: linear-gradient(transparent calc(100% - 18px), var(--orange-soft) 0 calc(100% - 2px), transparent 0);
}

.reason-card-wide strong {
    font-size: 40px;
    line-height: 1.4;
}


.reason-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    font-weight: 700;
}

.reason-card > p:not(.reason-head) {
    flex: 1;
}

.reason-pills {
    width: fit-content;
    margin-top: 14px;
    margin-inline: auto;
}

.reason-pills-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--yellow);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.reason-card.orange .pill {
    background-color: var(--orange-soft)
}

.reason-carousel-dots {
    display: none;
}

.compare-wrap {
    margin-top: 60px;
}

.compare-caption {
    margin: 0 0 30px;
    color: var(--black);
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
}

.compare-caption::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--white);
    vertical-align: 0.12em;
}

.compare-table-frame {
    overflow: hidden;
    border: 1px solid var(--black);
}

.compare-scrollbar {
    display: none;
}

.compare-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.72);
    border: 0;
}

.compare-table th,
.compare-table td,
.plan-table th,
.plan-table td {
    border: 1px solid var(--black);
    padding: 14px 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.compare-table th,
.compare-table td {
    border-width: 0 1px 1px 0;
    height: 46px;
    padding-top: 0;
    padding-bottom: 0;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-table thead th,
.plan-table thead th {
    background: #d9d9d9;
}

.compare-table {
    background: var(--white);
}

.compare-table thead th {
    background: #b5b5b5;
    color: var(--black);
}

.compare-table thead th:first-child {
    background: var(--black);
    color: var(--white);
}

.compare-table th:first-child,
.compare-table td:first-child {
    width: 24%;
}

.compare-table th:nth-child(n+2),
.compare-table td:nth-child(n+2) {
    width: 19%;
}

.compare-table .accent {
    background: var(--orange);
    color: #fff;
}

.compare-table tbody td {
    background: #f3f3f3;
}

.compare-table tbody td:first-child {
    background: #777;
    color: var(--white);
}

.compare-table tbody td:nth-child(2) {
    background: var(--white);
    font-weight: 900;
}

.compare-table tbody td:nth-child(n+3) {
    background: #e8e8e8;
}

.compare-mark {
    color: var(--orange);
}

.results {
    position: relative;
    padding: 100px 0 62px;
    background:
        radial-gradient(circle at 12% 26%, rgba(241, 205, 42, 0.18), transparent 18%),
        radial-gradient(circle at 88% 38%, rgba(241, 205, 42, 0.22), transparent 20%),
        linear-gradient(180deg, #fffef8 0%, #ffffff 100%);
}

.results .section-description {
    max-width: 760px;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 40px;
    margin: 40px auto 0;
}

.result-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 270px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(241, 205, 42, 0) 0%, rgba(241, 205, 42, 1) 100%);
    text-align: center;
    animation: resultBadgeFloat 3.8s ease-in-out infinite alternate;
    will-change: transform;
}

.result-badge:nth-child(2),
.result-badge:nth-child(4) {
    margin-bottom: 82px;
}

.result-badge:nth-child(2) {
    animation-delay: 0.45s;
}

.result-badge:nth-child(3) {
    animation-delay: 0.9s;
}

.result-badge:nth-child(4) {
    animation-delay: 1.35s;
}

@keyframes resultBadgeFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-34px);
    }

    100% {
        transform: translateY(10px);
    }
}

.result-badge p {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.result-badge strong {
    font-size: 52px;
    line-height: 1.4;
    font-weight: 900;
}

.result-badge:nth-child(3) strong{
    font-size: 50px;
}

.result-badge:nth-child(3) p {
    font-size: 16px;
}

.result-trusted {
    margin: 80px auto 0;
    text-align: center;
}

.result-trusted-line {
    height: 2px;
    background: rgba(241, 205, 42, 0.9);
}

.result-trusted p {
    margin: 30px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.result-logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1064px;
    margin: 0 auto 60px;
}

.result-logo-row span {
    display: block;
    height: 60px;
    background: #d8d8d8;
}

.plan-table-wrap {
    margin-top: 60px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--black);
}

.plan-mobile-cards {
    display: none;
}

.plan-mobile-label {
    display: none;
}

.plan-table {
    width: 100%;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.plan-table thead {
    height: 126px;
}

.plan-table thead th {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: var(--white);
}

.plan-table thead th span {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 20px;
    border-radius: 999px;
    background: #fff;
    font-size: 16px;
    line-height: 1.4;
}

.plan-table .lite {
    background: var(--blue);
}

.plan-table td {
    height: 58px;
}

.plan-table th,
.plan-table td {
    border-width: 0 1px 1px 0;
}

.plan-table th:last-child,
.plan-table td:last-child {
    border-right: 0;
}

.plan-table tfoot th,
.plan-table tfoot td {
    border-bottom: 0;
}

.plan-check {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 14px;
}

.plan-check::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 20px;
    height: 12px;
    border-left: 4px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    transform: rotate(-45deg);
}

.plan-table td:first-child {
    width: 31.75%;
    background: var(--white);
    text-align: center;
}

.plan-table td:nth-child(2) {
    width: calc(68.25% / 3);
    background: #E7F6FF;
}

.plan-table .mid {
    background: var(--yellow);
}

.plan-table td:nth-child(3) {
    width: calc(68.25% / 3);
    background: #FFFEF1;
}

.plan-table .pro {
    background: var(--red);
}

.plan-table td:nth-child(4) {
    width: calc(68.25% / 3);
    background: #FFF7F5;
}

.plan-table .group-row th {
    background: var(--black);
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    height: 73px;
}

.plan-table tfoot th {
    height: 146px;
    background: var(--black);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.plan-table tfoot td {
    background: var(--white);
}

.plan-table tfoot td[colspan="3"] {
    background: var(--white);
}

.plan-table tfoot .btn {
    width: 550px;
    height: 90px;
    min-width: 550px;
    min-height: 90px;
    padding: 30px 30px 30px 40px;
    border: 0;
    border-radius: 4px;
    /* justify-content: space-between; */
    font-size: 20px;
    line-height: 1.6;
    font-weight: 900;
}

.plan-cta {
    display: none;
    grid-template-columns: 1fr 2.15fr;
    align-items: center;
}

.plan-cta p {
    margin: 0;
    height: 100%;
    padding: 60px;
    background: var(--black);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.plan-cta .btn {
    margin: 28px auto;
    width: 550px;
}

.plan-tagline {
    font-family: "Outfit", sans-serif;
    width: 100vw;
    margin: 35px 0 0 50%;
    overflow: hidden;
    transform: translateX(-50%);
    white-space: nowrap;
}

.plan-tagline-track {
    display: flex;
    width: max-content;
    animation: plan-tagline-scroll 18s linear infinite;
}

.plan-tagline-track span {
    display: block;
    padding-right: 0.32em;
    font-size: 100px;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(0deg, rgba(241, 205, 42, 0) 0%, #F1CD2A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.04em;
}

@keyframes plan-tagline-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.flow {
    padding: 80px 0;
    background:
        url("img/background-yellow-geometric.png") center / cover no-repeat,
        var(--yellow);
}

.flow .section-heading {
    text-align: center;
}

.flow .section-title-fade {
    color: rgba(255, 255, 255, 0.8);
}

.flow .section-subtitle,
.flow .section-description {
    display: none;
}

.flow-title {
    color: var(--black);
    font-size: 34px;
    line-height: 1.6;
    font-weight: 900;
}

.flow-copy {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.flow-steps {
    display: none;
}

.flow-board {
    display: grid;
    grid-template-columns: 1fr 0 1fr 0 1fr 0 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 84px;
    overflow: visible;
}

.flow-card {
    position: relative;
    z-index: 1;
    min-height: 380px;
    padding: 35px 20px 28px;
    border: 3px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(148, 104, 0, 0.16);
}

.flow-card-highlight {
    border: 5px solid var(--orange);
    box-shadow: 0 18px 36px rgba(241, 128, 42, 0.2);
}

.flow-card-number {
    position: absolute;
    top: -24px;
    left: -4px;
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 50px;
    line-height: 0.92;
    font-weight: 700;
    z-index: 2;
}

.flow-card h3 {
    margin: 20px 0 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
}

.flow-card-highlight h3 {
    color: var(--orange);
}

.flow-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
}

.flow-card-visual img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.flow-graphic {
    position: relative;
}

.flow-graphic-doc {
    width: 74px;
    height: 88px;
    border: 4px solid var(--black);
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #ffe8b2);
    transform: rotate(-10deg);
}

.flow-graphic-doc::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 12px;
    background: #f1802a;
    box-shadow: 0 20px 0 #ffd200, 0 40px 0 #323333;
}

.flow-graphic-doc span {
    position: absolute;
    display: block;
    background: #ffcf2f;
}

.flow-graphic-doc span:nth-child(1) {
    right: -8px;
    top: 10px;
    width: 20px;
    height: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.flow-graphic-doc span:nth-child(2) {
    left: -10px;
    top: 28px;
    width: 28px;
    height: 18px;
    border: 3px solid #ffb66e;
    background: #fff;
    transform: rotate(-12deg);
}

.flow-graphic-doc span:nth-child(3) {
    right: 4px;
    bottom: -10px;
    width: 36px;
    height: 36px;
    border: 5px solid var(--black);
    border-radius: 50%;
    background: transparent;
}

.flow-graphic-person {
    width: 76px;
    height: 92px;
}

.flow-graphic-person .head {
    position: absolute;
    top: 0;
    left: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #323333;
}

.flow-graphic-person .body {
    position: absolute;
    left: 12px;
    top: 24px;
    width: 52px;
    height: 60px;
    border-radius: 28px 28px 18px 18px;
    background: linear-gradient(180deg, #8f8f93 0 60%, #ffffff 60% 100%);
}

.flow-graphic-person .accent {
    position: absolute;
    left: 31px;
    top: 34px;
    width: 14px;
    height: 42px;
    background: #ffd200;
    clip-path: polygon(50% 0, 100% 24%, 68% 100%, 32% 100%, 0 24%);
}

.flow-graphic-meeting {
    width: 90px;
    height: 84px;
}

.flow-graphic-meeting .chair {
    position: absolute;
    bottom: 8px;
    width: 22px;
    height: 48px;
    border-radius: 12px 12px 8px 8px;
    background: #8f8f93;
}

.flow-graphic-meeting .chair::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #323333;
}

.flow-graphic-meeting .chair.left {
    left: 8px;
    transform: rotate(-8deg);
}

.flow-graphic-meeting .chair.right {
    right: 8px;
    transform: rotate(8deg);
}

.flow-graphic-meeting .table {
    position: absolute;
    left: 29px;
    bottom: 20px;
    width: 32px;
    height: 18px;
    border-radius: 999px;
    background: #ffd200;
}

.flow-graphic-handshake {
    width: 94px;
    height: 90px;
}

.flow-graphic-handshake .person {
    position: absolute;
    bottom: 4px;
    width: 24px;
    height: 58px;
    border-radius: 12px 12px 10px 10px;
}

.flow-graphic-handshake .person::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #323333;
}

.flow-graphic-handshake .person.left {
    left: 14px;
    background: linear-gradient(180deg, #8f8f93 0 56%, #f1802a 56% 100%);
}

.flow-graphic-handshake .person.right {
    right: 14px;
    background: linear-gradient(180deg, #ffffff 0 56%, #323333 56% 100%);
}

.flow-graphic-handshake .hands {
    position: absolute;
    left: 34px;
    top: 38px;
    width: 26px;
    height: 10px;
    border-radius: 999px;
    background: #ffe0aa;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.flow-tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.flow-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 2px 10px;
    border: 1px solid #848484;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
}

.flow-tag.accent {
    background: var(--yellow);
}

.flow-link {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 -21px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(50, 51, 51, 0.14);
    transform: translateY(-6px);
    position: relative;
    z-index: 3;
}

.flow-link img {
    width: 29px;
    height: 18px;
    object-fit: contain;
}

.flow-note {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 20px 0 0 auto;
    padding: 6px 20px;
    border-radius: 999px;
    background: var(--black);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
}

.flow-note::before {
    content: "";
    margin-block: auto;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: var(--yellow);
}

.hero > .report-showcase,
.report > .report-inner {
    display: none;
}

.report {
    padding: 100px 0 96px;
    background:
        url("img/background-dark-geometric.png") center / cover no-repeat,
        var(--black);
}

.report-heading {
    text-align: center;
}

/* .report-heading .section-title-fade {
    color: rgba(255, 207, 47, 0.72);
} */

.report-title {
    margin-top: -20px;
    color: #fff;
    font-size: 34px;
    line-height: 1.6;
    font-weight: 900;
}

.report-showcase {
    padding-top: 12px;
}

.report-tabs {
    display: flex;
    gap: 6px;
    margin-top: 60px;
}

.report-tab {
    width: 270px;
    padding: 18px 40px;
    border: 0;
    border-radius: 20px 20px 0 0;
    background: #848484;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.report-tab.is-active {
    background: var(--yellow);
    color: var(--black);
}

.report-panel {
    display: grid;
    grid-template-columns: 495px 454px;
    gap: 51px;
    padding: 60px 100px;
    border-radius: 0 18px 18px 18px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.report-panel[hidden] {
    display: none;
}

.report-column-copy {
    display: grid;
    gap: 30px;
}

.report-block h3,
.report-stat-group h3 {
    align-items: center;
    min-height: 18px;
    margin: 0 0 16px;
    padding: 6px 15px;
    background: var(--yellow);
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
}

.report-block h3 {
    width: 100%;
    min-height: 38px;
}

.report-stat-group h3 {
    width: 100%;
    text-align: center;
}

.report-block p {
    margin: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.report-column-stats {
    display: grid;
    gap: 50px;
    align-content: start;
}

.report-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.report-arrow {
    position: relative;
    width: 30px;
    height: 12px;
    flex: 0 0 30px;
}

.report-arrow::before,
.report-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    height: 4px;
    border-radius: 999px;
    background: #8b8b8b;
    transform-origin: right center;
}

.report-arrow::before {
    left: 0;
}

.report-arrow::after {
    width: 18px;
    transform: rotate(48deg);
}

.report-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
}

.report-circle strong {
    line-height: 1.35;
    font-weight: 900;
}

.report-circle-label {
    display: block;
    margin-bottom: 2px;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.report-circle strong {
    font-family: "Outfit", sans-serif;
}

.report-value-main {
    font-size: 38px;
    line-height: 1.4;
    font-weight: 900;
}

.report-value-unit {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 900;
}

.report-metric-label,
.report-metric-value {
    display: block;
    line-height: 1.15;
    font-weight: 900;
}

.report-metric-label {
    font-size: 26px;
}

.report-metric-value {
    font-size: 48px;
}

.report-circle-dark {
    background: #2f2f2f;
    color: #fff;
}

.report-circle-light {
    background: linear-gradient(180deg, #faefb9 0%, var(--yellow) 85%);
    color: var(--black);
}

.report-circle.small {
    width: 200px;
    height: 200px;
    margin-inline: auto;
}

.report-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.voices {
    padding-block: 80px;
    border-block: 20px solid var(--yellow);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.voice-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 44px;
    padding: 40px 29px;
    border-radius: 20px;
    background: var(--yellow);
}

.js .voices .voice-card {
    opacity: 0;
    transform: translateY(36px);
}

.js .voices.is-visible .voice-card {
    animation: voiceCardReveal 0.7s ease-out forwards;
}

.js .voices.is-visible .voice-card:nth-child(2) {
    animation-delay: 0.18s;
}

.js .voices.is-visible .voice-card:nth-child(3) {
    animation-delay: 0.36s;
}

@keyframes voiceCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voice-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 142px;
    height: 142px;
    margin: 0 auto -14px;
}

.voice-visual img {
    width: 142px;
    height: 142px;
    object-fit: contain;
}

.voice-body {
    position: relative;
    padding: 27px 20px;
    border-radius: 16px;
    background: #fff;
    min-height: 244px;
}

.voice-body::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 16px solid #fff;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars img {
    width: 26px;
    height: 25px;
}

.voice-body p {
    margin: 12px 0 10px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}

.voice-body span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

.voice-body span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    flex: 0 0 8px;
}

.faq {
    overflow: visible;
    background: linear-gradient(180deg, #faefb9 0%, var(--yellow) 42%, var(--yellow) 100%);
    padding: 100px 0 120px;
}

.faq-subtitle.section-subtitle.white {
    color: var(--black);
}

.faq-inner {
    display: grid;
    grid-template-columns: 260px 620px;
    justify-content: center;
    gap: 110px;
    max-width: 1000px;
}

.faq-side {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: start;
    text-align: center;
    width: 100%;
    height: fit-content;
}

.faq-illust {
    width: 208px;
    max-width: 208px;
    margin-top: 34px;
    animation: faqIllustFloat 3.6s ease-in-out infinite;
}

@keyframes faqIllustFloat {
    50% {
        transform: translateY(-14px);
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 46px;
}

.faq-card {
    position: relative;
    padding: 30px 56px;
    border-radius: 8px;
    background: #fff;
    min-height: 176px;
    width: 620px;
}

.faq-q {
    position: absolute;
    top: -20px;
    left: -12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}

.faq-q::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 0;
    width: 13px;
    height: 13px;
    background: var(--black);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: rotate(-45deg);
    transform-origin: center;
    z-index: 1;
}

.faq-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
}

.faq-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
}

.faq-card p {
    margin: 30px 0 0;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: var(--black);
    font-weight: 700;
}

.faq-card p span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

.faq-card p span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 13px;
    height: 13px;
    background: var(--yellow);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}

.contact {
    background: var(--black);
    color: #fff;
}

.contact-photo {
    position: relative;
    overflow: hidden;
}

.contact-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 51, 51, 0.32);
}

.contact-photo img {
    width: 100%;
    height: 266px;
    object-fit: cover;
}

.contact-panel {
    position: relative;
    max-width: 765px;
    margin: 0 auto;
    padding: 45px 0 50px;
}

.contact-badge {
    position: absolute;
    top: -60px;
    left: 0;
    width: 196px;
    height: 196px;
    padding: 0;
    z-index: 1;
}

.contact-badge::after {
    content: none;
}

.contact-badge picture {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-copy {
    text-align: center;
    padding-inline: 21px;
}

.contact-title {
    background: linear-gradient(0deg, rgba(241, 205, 42, 1) 0%, rgba(241, 205, 42, 0) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 80px;
    line-height: 1;
}

.contact-copy h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.6;
    font-weight: 900;
}

.cta-row.center {
    /* justify-content: space-between; */
    gap: 29px;
    margin-top: 40px;
    justify-content: center;
}

.contact .btn {
    min-width: 0;
    min-height: 78px;
    padding: 30px;
    gap: 40px;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

.contact .btn.btn-primary {
    color: var(--black);
}

.contact .btn img {
    width: 20px;
}

.contact .btn-secondary.light {
    color: var(--black);
    gap: 54px;
}

.contact-bottom {
    width: 100%;
    margin: 40px auto 0;
    padding: 40px 0;
    border-block: 1px solid var(--white);
}

.contact-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
}

.contact-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.contact-pills li {
    min-width: 168px;
    padding: 10px 20px;
    border: 1px solid #FCF3BB;
    border-radius: 999px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #FCF3BB;
    border-bottom: 1px solid 
}

.contact-photo.bottom img {
    height: 266px;
    object-position: center 42%;
}

.site-footer {
    background: var(--yellow);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 42px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    padding: 12px 40px;
}

.footer-inner nav {
    display: flex;
    gap: 34px;
}

@media (max-width: 1024px) {
    .hero-photo-track {
        flex-direction: row;
        gap: 20px;
        animation: heroPhotoTrackSlide 64s linear infinite;
    }
}

@media (max-width: 1279px) {
    .flow-title {
        font-size: 36px;
    }

    .flow-board {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .flow-link {
        transform: rotate(90deg);
    }

    .flow-card {
        min-height: auto;
    }

    .flow-note {
        margin-right: 0;
    }

    .hero-photo-stack {
        right: -50px;
    }
}

@media (min-width: 769px) and (max-width: 1439px) {
    body {
        min-width: 0;
        overflow-x: hidden;
    }

    .container {
        width: min(calc(100% - 40px), 1200px);
    }

    .container.header-inner {
        width: min(calc(100% - 80px), 1360px);
        height: clamp(72px, 8vw, 96px);
        padding-block: 0;
    }

    .logo {
        width: clamp(132px, 13vw, 160px);
    }

    .header-nav {
        gap: clamp(12px, 2vw, 32px);
        font-size: clamp(11px, 1.2vw, 14px);
    }

    .header-cta {
        min-width: clamp(210px, 24vw, 276px);
        margin-left: clamp(12px, 2vw, 28px);
        gap: 10px;
        font-size: clamp(11px, 1.1vw, 13px);
    }

    .strip-top,
    .strip-bottom {
        aspect-ratio: 1179 / 2126;
    }

    .stat-ball {
        width: clamp(112px, 12vw, 150px);
        height: clamp(112px, 12vw, 150px);
        font-size: clamp(12px, 1.25vw, 16px);
    }

    .stat-ball strong {
        font-size: clamp(24px, 2.7vw, 34px);
    }

    .stat-ball strong span {
        font-size: clamp(32px, 3.5vw, 45px);
    }

    .stat-ball-a {
        left: 0;
    }

    .stat-ball-b {
        right: clamp(-50px, -3.5vw, 0px);
        top: 180px;
    }

    .stat-ball-c {
        left: clamp(-70px, -4.2vw, 0px);
        top: 250px;
    }

    .stat-ball-d {
        right: clamp(-10px, -0.8vw, 12px);
    }

    .section-title-fade {
        font-size: clamp(52px, 6vw, 80px);
    }

    .section-subtitle {
        font-size: clamp(26px, 2.7vw, 34px);
    }

    .section-description,
    .section-description.narrow {
        width: min(100%, 860px);
    }

    .about-grid,
    .reason-grid,
    .voice-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(20px, 3vw, 45px);
    }

    .about-card,
    .result-card {
        padding-inline: clamp(18px, 2.2vw, 28px);
    }

    .what-flows,
    .what-columns {
        padding-inline: clamp(28px, 6vw, 100px);
    }

    .what-flow-track {
        max-width: 100%;
    }

    .what-flow-track p {
        flex-basis: clamp(118px, 13.4vw, 176px);
        padding-inline: 14px;
        font-size: clamp(14px, 1.5vw, 20px);
    }

    .what-flow-track p:last-child {
        flex-basis: clamp(184px, 21vw, 288px);
    }

    .reason-card {
        padding-inline: clamp(16px, 1.8vw, 24px);
    }

    .reason-strength {
        font-size: clamp(14px, 1.7vw, 24px);
    }

    .reason-card h3 {
        font-size: clamp(18px, 1.8vw, 24px);
    }

    .reason-card strong {
        font-size: clamp(34px, 4vw, 56px);
    }

    .reason-card-wide strong {
        font-size: clamp(28px, 3vw, 40px);
    }

    .compare-wrap,
    .plan-table-wrap {
        overflow-x: auto;
    }

    .result-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(14px, 2.4vw, 40px);
    }

    .result-badge {
        width: clamp(168px, 20vw, 270px);
        height: clamp(168px, 20vw, 270px);
    }

    .result-badge strong,
    .result-badge:nth-child(3) strong {
        font-size: clamp(32px, 3.9vw, 52px);
    }

    .plan-cta {
        grid-template-columns: minmax(240px, 1fr) minmax(0, 2.15fr);
    }

    .plan-cta p {
        padding-inline: clamp(24px, 4vw, 60px);
    }

    .plan-cta .btn {
        width: min(90%, 550px);
    }

    .plan-tagline-track span {
        font-size: clamp(70px, 7.4vw, 100px);
    }

    .flow-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 24px;
        align-items: stretch;
        max-width: 860px;
        margin-inline: auto;
    }

    .flow-link {
        display: none;
    }

    .report-panel {
        grid-template-columns: minmax(0, 1fr);
        padding: clamp(36px, 5vw, 60px);
    }

    .report-tabs {
        overflow-x: auto;
    }

    .report-tab {
        flex: 0 0 240px;
    }

    .faq-inner {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: clamp(48px, 8vw, 172px);
    }

    .faq-card {
        max-width: 100%;
        padding-inline: clamp(42px, 6vw, 84px);
    }

    .contact-panel {
        width: min(calc(100% - 40px), 765px);
    }

    .contact-pills {
        flex-wrap: wrap;
    }

    .footer-inner {
        padding-inline: 20px;
        gap: 20px;
        font-size: clamp(12px, 1.2vw, 16px);
    }

    .footer-inner nav {
        gap: clamp(14px, 2vw, 34px);
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .hero-strip img {
        border-radius: 8px;
    }

    .hero-kicker {
        font-size: 20px;
    }
    
    .hero .cta-row {
        max-width: 600px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-title > span {
        font-size: 28px;
    }

    .hero-title strong {
        font-size: 48px;
    }

    .hero-strip {
        width: clamp(196px, 17vw, 230px);
        aspect-ratio: 1179 / 2126;
    }

    .hero .btn-secondary {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1028px) {
    .hero {
        padding: 0 0 34px;
        background:
            radial-gradient(circle at 15% 15%, rgba(241, 205, 42, 0.42), transparent 28%),
            radial-gradient(circle at 84% 9%, rgba(241, 205, 42, 0.32), transparent 26%),
            linear-gradient(180deg, #fff7cd 0%, #fffef8 74%, #ffffff 100%);
    }

    .hero::before,
    .hero::after {
        content: none;
    }

    .hero-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 18px;
        align-items: stretch;
        padding-inline: 20px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        min-height: clamp(390px, 42vw, 430px);
        margin: 0 -20px;
    }

    .hero-photo-stack {
        top: clamp(-64px, calc(-6vw + 2px), -24px);
        left: clamp(-120px, -8vw, -40px);
        right: auto;
        flex-direction: row;
        gap: 0;
        transform: rotate(-4deg);
    }

    .hero-strip,
    .strip-top,
    .strip-bottom {
        width: clamp(160px, 19vw, 190px);
        aspect-ratio: 1179 / 2126;
        border-radius: 8px;
        box-shadow: 0 12px 26px rgba(50, 51, 51, 0.16);
    }

    .hero-strip img {
        border-radius: 8px;
        object-position: center 34%;
        transform: none;
    }

    .strip-middle {
        z-index: 2;
    }

    .stat-ball {
        width: clamp(104px, 12vw, 124px);
        height: clamp(104px, 12vw, 124px);
        font-size: clamp(12px, 1.35vw, 14px);
        line-height: 1.25;
    }

    .stat-ball strong {
        font-size: clamp(26px, 3vw, 32px);
        line-height: 1.15;
    }

    .stat-ball strong span {
        font-size: clamp(34px, 3.8vw, 40px);
    }

    .stat-ball-a {
        top: 70px;
        left: 31px;
    }

    .stat-ball-b {
        top: 46px;
        right: 34px;
    }

    .stat-ball-c {
        top: 253px;
        left: 31px;
    }

    .stat-ball-d {
        top: 241px;
        right: 34px;
        bottom: auto;
    }

    .hero-kicker {
        order: 1;
        align-self: center;
        margin: 0 0 20px;
        padding: 7px 16px;
        border-radius: 9999px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-title {
        order: 2;
        text-align: center;
    }

    .hero-title > span {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.8;
    }

    .hero-title strong {
        font-size: 34px;
        line-height: 1.7;
    }

    .hero-strong-line {
        white-space: normal;
    }

    .hero-title em {
        margin: 0 3px;
        padding: 0 8px;
        border-radius: 2px;
        white-space: nowrap;
    }

    .hero-title em::before {
        width: 24px;
        height: 17px;
        margin-right: 8px;
        border-left-width: 4px;
        border-bottom-width: 4px;
        transform: translateY(-5px) rotate(-45deg);
    }

    .hero-text {
        order: 3;
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.8;
        text-align: left;
    }

    .hero-text br {
        display: none;
    }

    .hero .cta-row {
        order: 4;
        flex-direction: column;
        gap: 14px;
        margin-top: 26px;
    }

    .hero .btn {
        width: 100%;
        min-width: 0;
        min-height: 88px;
        padding: 0 28px;
        gap: 14px;
        border-radius: 4px;
        font-size: 18px;
        line-height: 1.45;
    }
    
    .hero .btn-secondary {
        justify-content: center;
    }

    .note-badge {
        top: -20px;
        left: 14px;
        padding: 4px 10px 10px;
        font-size: 12px;
    }

    .hero-note-badge {
        top: -28px;
        left: 12px;
        gap: 6px;
        min-width: 0;
        min-height: 0;
        padding: 7px 10px 24px;
        font-size: 16px;
    }

    .hero-note-badge img {
        width: 20px;
        height: 20px;
    }

    .hero-note-badge .hero-note-text {
        font-size: 16px;
    }

    .hero-note-badge strong {
        padding-inline: 2px;
        font-size: 27px;
    }
    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 40px;
        height: 40px;
        margin-left: auto;
        border: 0;
        border-radius: 50%;
        background: var(--yellow);
        padding: 0;
        z-index: 31;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--black);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header.is-menu-open .menu-toggle {
        background: var(--black);
    }

    .site-header.is-menu-open .menu-toggle span {
        background: #fff;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(33.69deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-33.69deg);
    }

    .mobile-menu {
        position: fixed;
        top: clamp(72px, 8vw, 96px);
        left: 0;
        right: 0;
        z-index: 30;
        display: block;
        width: 100%;
        min-height: calc(100vh - clamp(72px, 8vw, 96px));
        padding: 24px 20px;
        background:
            url("img/background-dark-geometric.png") center / cover no-repeat,
            var(--black);
        color: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .site-header.is-menu-open .mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-nav {
        overflow: hidden;
        border-radius: 6px;
        background: #fff;
        color: var(--black);
        padding: 10px 25px 20px;
    }

    .mobile-menu-nav a {
        display: block;
        padding: 24px 2px 4px;
        border-bottom: 1px solid rgba(50, 51, 51, 0.08);
        color: var(--black);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
    }

    .mobile-menu-nav a:first-child {
        padding: 0 2px 4px;
    }

    .mobile-menu-nav a::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 10px;
        border-radius: 50%;
        background: var(--yellow);
        vertical-align: middle;
    }

    .mobile-menu-cta-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .mobile-menu-cta {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        margin-top: 40px;
        padding: 0 14px;
        gap: 10px;
        border: 0;
        border-radius: 4px;
        color: var(--black);
        font-size: 18px;
        font-weight: 900;
        line-height: 1.6;
    }

    .mobile-menu .btn-primary {
        margin-right: auto;
    }

    .mobile-menu .btn-secondary {
        margin-inline: auto 0;
        min-height: 50px;
        margin-top: 40px;
        padding: 0 18px 0 24px;
        justify-content: center;
        color: var(--black);
    }

    .mobile-menu-links {
        margin-top: 8px;
    }

    .mobile-menu-links a {
        display: block;
        padding: 18px 0 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.6;
    }
}

@media (min-width: 769px) and (max-width: 1028px) {
    .what-card h4 {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
        padding-inline: 8px;
    }
}

@media (max-width: 768px) {
    .u-sp {
        display: block;
    }

    html,
    body {
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    body {
        background: #fffef4;
    }

    .container {
        width: 100%;
        max-width: 600px;
        margin-inline: auto;
        padding-inline: 20px;
    }

    .section {
        scroll-margin-top: 72px;
    }

    .site-header {
        position: fixed;
        background: transparent;
        border-bottom-color: transparent;
    }

    .site-header.is-menu-open {
        background: #fff;
        border-bottom-color: rgba(50, 51, 51, 0.1);
    }

    .container.header-inner {
        width: 100%;
        height: 53px;
        padding: 16px 20px;
    }

    .logo {
        width: 128px;
    }

    .site-header.is-menu-open .header-inner {
        height: 53px;
        padding-inline: 20px;
    }

    .site-header.is-menu-open .logo {
        width: 128px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        width: 40px;
        height: 40px;
        margin-left: auto;
        border: 0;
        border-radius: 50%;
        background: var(--yellow);
        padding: 0;
        z-index: 31;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--black);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header.is-menu-open .menu-toggle {
        background: var(--black);
    }

    .site-header.is-menu-open .menu-toggle span {
        background: #fff;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(5px) rotate(33.69deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-5px) rotate(-33.69deg);
    }

    .mobile-menu {
        position: fixed;
        top: 53px;
        left: 0;
        right: 0;
        z-index: 30;
        display: block;
        width: 100%;
        min-height: calc(100vh - 34px);
        max-height: calc(100vh - 53px);
        padding: 30px 20px 18px;
        overflow-y: auto;
        background:
            url("img/background-dark-geometric.png") center / cover no-repeat,
            var(--black);
        color: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .site-header.is-menu-open .mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-nav {
        overflow: hidden;
        border-radius: 6px;
        background: #fff;
        color: var(--black);
        padding: 10px 25px 20px;
    }

    .mobile-menu-nav a {
        display: block;
        padding: 24px 2px 4px;
        border-bottom: 1px solid #F3F3F3;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
    }

    .mobile-menu-nav a:first-child {
        padding: 0 2px 4px;
    }

    .mobile-menu-nav a::before {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 10px;
        border-radius: 50%;
        background: var(--yellow);
        vertical-align: middle;
    }

    .mobile-menu-cta-row {
        display: block;
    }

    .mobile-menu-cta {
        width: auto;
        min-height: 50px;
        margin-top: 11px;
        padding: 0 14px;
        gap: 10px;
        border: 0;
        border-radius: 4px;
        color: var(--black);
    }

    .btn.mobile-menu-cta {
        font-size: 18px;
        font-weight: 900;
        line-height: 1.6;
        margin-top: 40px;
    }

    .mobile-menu-cta .note-badge {
        --note-badge-width: 100px;
        top: -12px;
        left: 8px;
        padding: 2px 8px 7px;
        font-size: 10px;
    }

    .mobile-menu-cta .note-badge img {
        width: 13px;
    }

    .mobile-menu-cta img {
        width: 14px;
    }

    .mobile-menu .btn-secondary {
        min-height: 70px;
        margin-top: 16px;
        padding: 0 18px 0 24px;
        justify-content: center;
        border-radius: 4px;
    }

    .mobile-menu-links {
        margin-top: 8px;
    }

    .mobile-menu-links a {
        display: block;
        padding: 18px 0 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.6;
    }

    .section-title-fade {
        font-size: 33px;
        font-weight: 700;
        line-height: 1.6;
        letter-spacing: 0;
    }

    .section-subtitle {
        margin-top: 0;
        font-size: 22px;
        line-height: 1.6;
    }

    .section-description,
    .section-description.narrow {
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .btn {
        width: 100%;
        min-width: 0;
        min-height: 78px;
        padding: 0 22px;
        gap: 14px;
        border-radius: 4px;
        font-size: 16px;
        line-height: 1.45;
    }

    .btn img {
        width: 20px;
        flex: 0 0 auto;
    }

    .cta-row {
        flex-direction: column;
        gap: 14px;
    }

    .hero {
        padding: 0 0 34px;
        background:
            radial-gradient(circle at 15% 15%, rgba(241, 205, 42, 0.42), transparent 28%),
            radial-gradient(circle at 84% 9%, rgba(241, 205, 42, 0.32), transparent 26%),
            linear-gradient(180deg, #fff7cd 0%, #fffef8 74%, #ffffff 100%);
    }

    .hero::before,
    .hero::after {
        content: none;
    }

    .hero-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        align-items: stretch;
        padding-inline: 20px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 315px;
        margin: 0 -20px;
    }

    .hero-photo-stack {
        top: -76px;
        left: -185px;
        right: auto;
        flex-direction: row;
        gap: 0;
        transform: rotate(-4deg);
    }

    .hero-strip {
        width: 176px;
        aspect-ratio: 11 / 17;
        border-radius: 8px;
        box-shadow: 0 12px 26px rgba(50, 51, 51, 0.16);
    }

    .strip-top,
    .strip-bottom {
        aspect-ratio: 11 / 17;
    }

    .hero-strip img {
        object-position: center top;
        transform: none;
    }

    .strip-middle {
        width: 176px;
        z-index: 2;
    }

    .stat-ball {
        width: 100px;
        height: 100px;
        font-size: 12px;
        line-height: 1.25;
    }

    .stat-ball strong {
        font-size: 26px;
        line-height: 1.15;
    }

    .stat-ball strong span {
        font-size: 34px;
    }

    .stat-ball-a {
        top: 50px;
        left: 20px;
    }

    .stat-ball-b {
        top: 33px;
        right: 24px;
    }

    .stat-ball-c {
        top: 213px;
        left: 21px;
    }

    .stat-ball-d {
        top: 201px;
        right: 30px;
        bottom: auto;
    }

    .hero-kicker {
        order: 1;
        align-self: center;
        margin: 0 0 6px;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 12px;
        line-height: 1.4;
        border-radius: 9999px;
    }

    .hero-title {
        order: 2;
        text-align: center;
    }

    .hero-title > span {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-title strong {
        font-size: 28px;
        line-height: 1.6;
    }

    .hero-strong-line {
        white-space: normal;
    }

    .hero-title em {
        margin: 0 3px;
        padding: 0 8px;
        border-radius: 2px;
        white-space: nowrap;
    }

    .hero-title em::before {
        width: 22px;
        height: 13px;
        margin-right: 8px;
        border-left-width: 3px;
        border-bottom-width: 3px;
        transform: translateY(-5px) rotate(-45deg);
    }

    .hero-text {
        order: 3;
        margin-top: 14px;
        font-size: 12px;
        line-height: 1.6;
        text-align: left;
    }

    .hero-text br {
        display: none;
    }

    .hero .cta-row {
        order: 4;
        gap: 16px;
        margin-top: 40px;
    }

    .hero .btn {
        min-width: 0;
        min-height: 90px;
        font-size: 18px;
    }

    .hero .btn-secondary {
        min-height: 70px;
        padding-inline: 40px;
        justify-content: center;
    }

    .note-badge {
        top: -20px;
        left: 14px;
        padding: 4px 10px 10px;
        font-size: 12px;
    }

    .hero-note-badge {
        top: -26px;
        left: -1px;
        gap: 3px;
        min-width: 0;
        min-height: 0;
        padding: 4px 8px 24px;
        font-size: 16px;
    }

    .hero-note-badge img {
        width: 20px;
        height: 20px;
    }

    .hero-note-badge .hero-note-text {
        font-size: 16px;
    }

    .hero-note-badge strong {
        padding-inline: 2px;
        font-size: 24px;
    }

    .hero-note-badge strong span {
        font-size: 16px;
    }

    .about {
        padding: 40px 0 30px;
        background:
            linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(241, 205, 42, 0.96) 100%);
    }

    .about::after {
        bottom: -65px;
        height: 65px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 30px;
    }

    .about-card {
        padding: 30px 15px;
        border-width: 4px;
        border-radius: 16px;
    }

    .about-card-image {
        width: 128px;
        height: 128px;
    }

    .about-card img {
        width: 84px;
        height: 62px;
    }

    .about-card h3 {
        margin: 16px auto 20px;
        font-size: 20px;
    }

    .about-card ul {
        padding-left: 0;
    }

    .about-card ul li {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 10px;
    }

    .about-card ul li:not(:first-child) {
        margin-top: 10px;
    }

    .about-message {
        margin-top: 28px;
        padding: 23px 31px;
        border-radius: 6px;
    }

    .about-message p {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
    }

    .what {
        padding: 100px 0 60px;
        background:
            url("img/background-dark-geometric.png") center / cover no-repeat,
            var(--black);
    }

    .what .section-title-fade {
        font-size: 33px;
    }

    .what-subtitle {
        font-size: 22px;
        line-height: 1.6;
        margin-top: 0;
    }

    .what-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .what-flows,
    .what-columns {
        margin-top: 30px;
        padding: 20px 25px 30px;
        border-radius: 10px;
    }

    .what-columns {
        margin-top: 22px;
        border-width: 1px;
    }

    .what-flows {
        border-width: 1px;
    }

    .what-flows h3,
    .what-columns h3 {
        font-size: 16px;
    }

    .what-flow-track {
        flex-direction: column;
        margin-top: 15px;
    }

    .what-flow-track p,
    .what-flow-track p:last-child {
        max-width: 220px;
        flex: 0 0 auto;
        width: 100%;
        min-height: 44px;
        padding: 16px;
        border-radius: 3px;
        font-size: 16px;
        line-height: 1.4;
    }

    .what-flow-track p:last-child {
        border: inherit;
    }

    .what-flow-track img {
        width: 19px;
        height: 24px;
        margin: 5px auto;
        transform: rotate(90deg);
    }

    .what-column-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 14px;
    }

    .what-card {
        border-radius: 3px;
    }

    .what-card h4 {
        padding: 4px 10px;
        font-size: 16px;
    }

    .what-card ul {
        padding: 11px 25px;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .reasons {
        padding: 42px 0 0;
        background: linear-gradient(180deg, #ffffff 0%, #ffffff 12%, var(--yellow) 100%);
    }

    .reasons > .container {
        max-width: none;
    }

    .reason-grid {
        display: block;
        margin: 26px -20px 0;
    }

    .reason-carousel {
        display: flex;
        gap: 18px;
        padding: 0 calc((100vw - 268px) / 2) 22px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: calc((100vw - 268px) / 2);
        scrollbar-width: none;
    }

    .reason-carousel::-webkit-scrollbar {
        display: none;
    }

    .reason-carousel + .reason-carousel {
        margin-top: 34px;
    }

    .reason-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: -6px 0 40px;
    }

    .reason-carousel-dot {
        width: 8px;
        height: 8px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #9b9b9b;
    }

    .reason-carousel-dot.is-active {
        background: var(--orange);
    }

    .reason-card {
        flex: 0 0 268px;
        scroll-snap-align: center;
        padding: 17px 15px 20px;
        border-width: 4px;
        border-radius: 16px;
    }

    .reason-head {
        gap: 5px;
    }

    .reason-number {
        font-size: 35px;
    }

    .reason-strength {
        font-size: 14px;
    }

    .reason-card h3 {
        margin: 4px 0 10px;
        font-size: 16px;
        line-height: 1.6;
    }

    .reason-card strong,
    .reason-card-wide strong {
        font-size: 36px;
        line-height: 1.25;
    }

    .reason-card-wide strong {
        font-size: 30px;
    }

    .reason-card h3 .reason-title-large {
        font-size: 16px;
    }

    .reason-card p {
        font-size: 13px;
        text-align: center;
    }

    .pill {
        padding: 2px 8px;
        font-size: 12px;
    }

    .compare-wrap {
        margin: 18px -20px 0;
        padding: 22px 0 30px;
        border: 0;
        overflow: hidden;
    }

    .compare-caption {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .compare-table {
        width: max(600px, 100%);
        min-width: 600px;
        margin: 0;
    }

    .compare-table th:first-child,
    .compare-table td:first-child {
        width: 128px;
    }

    .compare-table th:nth-child(n+2),
    .compare-table td:nth-child(n+2) {
        width: 114px;
    }

    .compare-table-frame {
        width: calc(100% - 20px);
        margin-left: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .compare-table-frame::-webkit-scrollbar {
        display: none;
    }

    .compare-scrollbar {
        display: block;
        position: relative;
        width: calc(100% - 40px);
        height: 2px;
        margin: 28px 0 0 20px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.9);
    }

    .compare-scrollbar span {
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
        height: 100%;
        background: var(--black);
        transform: translateX(0);
        transition: transform 0.12s linear;
    }

    .compare-table th,
    .compare-table td {
        padding: 6px;
        font-size: 12px;
        line-height: 1.4;
    }

    .compare-table tbody td:nth-child(2) {
        width: 22%;
    }

    .compare-table thead tr,
    .compare-table thead th {
        height: 28px;
    }

    .compare-table thead th {
        padding-block: 0;
    }

    .compare-table tbody tr,
    .compare-table tbody td {
        height: 46px;
    }

    .results {
        padding: 40px 0 60px;
        background:
            radial-gradient(circle at 50% 28%, rgba(241, 205, 42, 0.2), transparent 28%),
            linear-gradient(180deg, #fffde9 0%, #ffffff 100%);
    }

    .results .section-title-fade {
        font-size: 33px;
    }

    .result-stats {
        display: block;
        position: relative;
        height: 680px;
        margin-top: 28px;
        max-width: 500px;
    }

    .result-badge {
        position: absolute;
        width: 200px;
        height: 200px;
    }

    .result-badge:nth-child(1) {
        top: 0;
        left: 12px;
    }

    .result-badge:nth-child(2) {
        top: 160px;
        right: 8px;
        margin-bottom: 0;
    }

    .result-badge:nth-child(3) {
        top: 320px;
        left: 8px;
    }

    .result-badge:nth-child(4) {
        right: 12px;
        bottom: 0px;
        margin-bottom: 0;
    }

    .result-badge p {
        font-size: 16px;
    }

    .result-badge:nth-child(3) p {
        font-size: 14px;
    }

    .result-badge strong,
    .result-badge:nth-child(3) strong {
        font-family: "Outfit", sans-serif;
        font-size: 42px;
        line-height: 1.4;
    }

    .result-badge:nth-child(3) strong {
        font-size: 40px;
    }

    .result-trusted {
        margin-top: 34px;
    }

    .result-trusted p {
        margin: 30px 0 20px;
        font-size: 16px;
    }

    .result-logo-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
        margin-bottom: 40px;
        padding-inline: 8px;
    }

    .result-logo-row span {
        height: 40px;
    }

    .result-logo-row span:last-child {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
    }

    .plan {
        padding: 44px 0 28px;
    }

    .plan .section-title-fade {
        font-size: 33px;
    }

    .plan-table-wrap {
        margin: 28px -20px 0;
        padding: 30px 20px 40px;
        border-radius: 8px;
        box-shadow: none;
        background: #fff;
        overflow: visible;
    }

    .plan-table {
        display: none;
    }

    .plan-mobile-cards {
        display: grid;
        gap: 20px;
    }

    .plan-mobile-label {
        display: block;
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 1.6;
        font-weight: 700;
        text-align: center;
    }

    .plan-mobile-card {
        overflow: hidden;
        border: 1px solid var(--black);
        border-radius: 10px;
        background: #fff;
    }

    .plan-mobile-card h3 {
        position: relative;
        margin: 0;
        padding: 12px 26px 12px 18px;
        background: var(--blue);
        font-size: 16px;
        line-height: 1.6;
        font-weight: 700;
        text-align: center;
    }

    .plan-mobile-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-height: 20px;
        /* padding-right: 28px; */
        font: inherit;
        color: inherit;
        cursor: pointer;
    }

    .plan-mobile-toggle::after {
        content: "";
        position: absolute;
        right: 2px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .plan-mobile-card.is-open .plan-mobile-toggle::after {
        transform: translateY(-30%) rotate(-135deg);
    }

    .plan-mobile-card h3 span {
        display: inline-block;
        padding: 1px 10px;
        border-radius: 999px;
        background: var(--white);
        font-size: 12px;
        line-height: 1.6;
    }

    .plan-mobile-card.mid h3 {
        background: var(--yellow);
    }

    .plan-mobile-card.pro h3 {
        background: var(--red);
    }

    .plan-mobile-card dl {
        margin: 0;
        background: #e7f6ff;
        display: none;
    }

    .plan-mobile-card.is-open dl {
        display: block;
    }

    .plan-mobile-card.mid dl {
        background: #fffdf0;
    }

    .plan-mobile-card.pro dl {
        background: #fff6f4;
    }

    .plan-mobile-card dt {
        margin: 0;
        padding: 6px 12px;
        background: var(--black);
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
    }

    .plan-mobile-card dd {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
        padding: 10px 25px;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 700;
    }

    .plan-mobile-card dt + dd {
        padding-top: 20px;
    }

    .plan-mobile-card dt + dd + dd + dd + dd {
        padding-bottom: 20px;
    }

    .plan-mobile-card .plan-mobile-offer-follow {
        padding-block: 0 30px;
    }

    .plan-mobile-card dd strong {
        color: #848484;
        font-size: 14px;
        line-height: 1.4;
    }

    .mobile-plan-check {
        position: relative;
        display: inline-block;
        width: 18px;
        height: 14px;
        flex: 0 0 18px;
    }

    .mobile-plan-check::before {
        content: "";
        position: absolute;
        left: 8px;
        top: 1px;
        width: 12px;
        height: 7px;
        border-left: 2px solid #F1802A;
        border-bottom: 2px solid #F1802A;
        transform: rotate(-45deg);
    }

    .plan-cta {
        display: block;
        margin-top: 20px;
    }

    .plan-cta p {
        padding: 8px 16px;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 700;
    }

    .plan-cta .btn {
        width: 100%;
        margin: 16px 0 0;
        padding: 30px 29px 30px 19px;
        min-width: 0;
        border-radius: 4px;
        font-size: 18px;
        line-height: 1.6;
        font-weight: 900;
    }

    .plan-tagline {
        margin-top: 18px;
    }

    .plan-tagline-track {
        animation-duration: 14s;
    }

    .plan-tagline-track span {
        font-size: 30px;
    }

    .flow {
        padding: 44px 0 60px;
        background:
            url("img/background-yellow-geometric.png") center / cover no-repeat,
            var(--yellow);
    }

    .flow .section-title-fade {
        font-size: 33px;
        color: rgba(255, 255, 255, 0.9);
    }

    .flow-title {
        font-size: 22px;
        line-height: 1.6;
        font-weight: 900;
    }

    .flow-copy {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 700;
    }

    .flow-board {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 300px;
        margin: 28px auto 0;
    }

    .flow-card {
        min-height: 0;
        padding: 35px 28px 28px;
        border-radius: 14px;
    }

    .flow-card-highlight {
        border-width: 5px;
    }

    .flow-card-number {
        top: -18px;
        left: -6px;
        font-size: 50px;
    }

    .flow-card-visual img {
        width: 150px;
        height: auto;
    }

    .flow-card h3 {
        margin: 14px 0;
        font-size: 24px;
        line-height: 1.6;
        font-weight: 900;
    }

    .flow-tag-list {
        gap: 6px;
    }

    .flow-tag {
        min-height: 18px;
        padding: 2px 10px;
        font-size: 12px;
    }

    .flow-link {
        width: 42px;
        height: 42px;
        margin: -20px auto -20px;
        transform: rotate(90deg);
    }

    .flow-link img {
        width: 28px;
        height: 17px;
    }

    .flow-note {
        margin: 14px auto 0;
        padding: 4px 14px;
        font-size: 12px;
        line-height: 1.6;
        font-weight: 700;
        gap: 5px;
    }

    .flow-note::before {
        content: "";
        margin-block: auto;
        width: 12px;
        height: 12px;
        border-radius: 2px;
    }

    .report {
        display: none;
    }

    .voices {
        padding: 40px 0 60px;
        border-block-width: 8px;
    }

    .voices .section-title-fade {
        font-size: 33px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .voice-card {
        gap: 26px;
        padding: 30px 25px;
        border-radius: 10px;
    }

    .voice-visual {
        width: 120px;
        height: 120px;
        margin-bottom: -4px;
    }

    .voice-visual img {
        width: 120px;
        height: 120px;
    }

    .voice-body {
        min-height: 0;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .voice-body::before {
        top: -14px;
        border-bottom: 27px solid #fff;
    }

    .stars img {
        width: 22px;
        height: auto;
    }

    .voice-body p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }

    .voice-body span {
        font-size: 12px;
        line-height: 1.6;
        font-weight: 900;
    }

    .faq {
        padding: 40px 0 60px;
    }

    .faq-inner {
        display: block;
        max-width: 600px;
    }

    .faq-side {
        position: static;
        display: grid;
        grid-template-columns: 96px auto;
        grid-template-areas: "illust text";
        column-gap: 30px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .faq-side > div {
        grid-area: text;
    }

    .faq-side .section-title-fade {
        font-size: 33px;
        line-height: 1.6;
    }

    .faq-subtitle.section-subtitle.white {
        font-size: 22px;
        line-height: 1.6;
        font-weight: 900;
    }

    .faq-illust {
        grid-area: illust;
        display: block;
        width: 96px;
        max-width: 96px;
        margin-top: 0;
    }

    .faq-list {
        gap: 30px;
        margin-top: 40px;
    }

    .faq-card {
        max-width: none;
        min-height: 190px;
        padding: 20px 35px 20px;
        border-radius: 21px;
        width: 100%;
    }

    .faq-q {
        top: -20px;
        left: 0px;
        width: 38px;
        height: 38px;
        font-size: 22px;
        font-weight: 700;
    }

    .faq-q::after {
        width: 15px;
        height: 15px;
    }

    .faq-card h3 {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 900;
    }

    .faq-card p {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-card p span {
        width: 38px;
        height: 38px;
        margin-bottom: 16px;
        font-size: 22px;
    }

    .faq-card p span::after {
        bottom: -6px;
        width: 13px;
        height: 13px;
    }

    .contact-photo img {
        height: 108px;
    }

    .contact-panel {
        max-width: 600px;
        margin-inline: auto;
        padding: 108px 16px 50px;
    }

    .contact-badge {
        top: -56px;
        left: 50%;
        width: 155px;
        height: 155px;
        transform: translateX(-50%);
    }

    .contact-copy {
        padding-inline: 0;
    }

    .contact-title {
        font-size: 33px;
        line-height: 1.6;
    }

    .contact-copy h2 {
        font-size: 22px;
        line-height: 1.6;
    }

    .cta-row.center {
        gap: 16px;
        margin-top: 26px;
        justify-content: center;
    }

    .contact .btn {
        min-height: 66px;
        padding: 30px;
        gap: 18px;
        font-size: 18px;
    }

    .contact .btn.btn-secondary {
        padding: 20px 47px 20px 43px;
        justify-content: center;
    }

    .contact-bottom {
        margin-top: 30px;
        padding: 30px 0;
    }

    .contact-text {
        font-size: 14px;
        line-height: 1.6;
        font-weight: 700;
    }

    .contact-pills {
        flex-wrap: wrap;
        gap: 16px 10px;
        margin-top: 20px;
    }

    .contact-pills li {
        min-width: 136px;
        padding: 9px 22px;
        font-size: 12px;
        font-weight: 700;
    }

    .contact-photo.bottom img {
        height: 108px;
    }

    .footer-inner {
        display: block;
        min-height: 0;
        padding: 4px 16px;
        font-size: 10px;
        text-align: center;
    }

    .footer-inner p {
        margin: 0;
    }

    .footer-inner nav {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo-track,
    .js .reasons.is-visible .reason-card:not([data-carousel-clone]),
    .result-badge,
    .faq-illust {
        animation: none;
    }

    .js .reasons .reason-card:not([data-carousel-clone]),
    .js .voices .voice-card,
    .result-badge {
        transform: none;
    }

    .js .reasons .reason-card:not([data-carousel-clone]),
    .js .voices .voice-card {
        opacity: 1;
    }
}
