:root {
    --color-primary: #000000;
    --color-accent: #ceb26a;
    --color-stroke: #daae34;
    --color-white: #ffffff;
    --color-semiborder: #d8b033;

    --text-primary: #000000;
    --text-white: #ffffff;
    --text-accent: #ceb26a;
    --text-stroke: #daae34;
    --text-gray: #999999;

    --bg-accent: #ceb26a;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;

    --font-zen: zen-old-mincho, serif;
    --font-notos-sans: "noto-sans-cjk-jp", 'Noto Sans JP', sans-serif;
    --font-yu-gothic: "yu-gothic-pr6n", sans-serif;

    --container-width: 48rem;        /* 768px */
    --container-padding: 0 1.156rem;
}

/* BASE
---------------------------------------- */
main,
footer {
    position: relative;
    margin-inline: auto;
    overflow: hidden;
}

section {
    position: relative;
    padding-top: 2.813rem;
    padding-bottom: 2.813rem;
}

.row {
    position: relative;
    width: 100%;
}

.container {
    position: relative;
    max-width: var(--container-width);
    margin-inline: auto;
    padding: var(--container-padding)
}

.container.full-row {
    max-width: 100%;
    padding: 0;
}

.container.max-width {
    max-width: var(--container-width);
    padding: 0;
}

.divider {
    width: 5.481rem;
    height: 1px;
    margin-inline: auto;
    background-color: var(--color-stroke);
}

@media screen and (min-width: 768px) {
    .divider {
        width: 10rem;
    }
}

/* END OF BASE
---------------------------------------- */



/* UTILITIES
---------------------------------------- */
.color--accent {
    color: var(--text-accent);
}


/* HEADER + MENU + LOGO
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.125rem 1.156rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header.is-pinned {
    background-color: rgba(0, 0, 0, 0.85);
}

.header.is-hidden {
    transform: translateY(-100%);
}

.logo {
    width: 7rem;
}

/* Hamburger button */
.menu {
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--text-white);
}

.menu:hover p {
    color: var(--text-accent);
}

.menu:hover .menu__icon span {
    background-color: var(--bg-accent);
}

.menu p {
    font-family: var(--font-zen);
    font-size: 0.688rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
}

.menu__icon {
    position: relative;
    display: inline-block;
    width: 1.5rem;
    height: 0.75rem;
}

.menu__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--bg-white);
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}

.menu__icon span:nth-child(1) { top: 0; }
.menu__icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu__icon span:nth-child(3) { top: 100%; transform: translateY(-100%); }

.menu.is-open .menu__icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.menu.is-open .menu__icon span:nth-child(2) {
    opacity: 0;
}
.menu.is-open .menu__icon span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-panel__list {
    text-align: center;
}

.menu-panel__list li {
    margin: 1.5rem 0;
}

.menu-panel__list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--text-white);
    font-size: 1rem;
    letter-spacing: 0.15em;
    transition: color 0.2s ease;
}

.menu-panel__list a:hover,
.menu-panel__list a:focus-visible {
    color: var(--text-accent);
}

@media screen and (min-width: 768px) {
    .logo {
        width: 15rem;
    }

    .menu p {
        font-size: 1rem;
    }

    .menu__icon {
        width: 2.5rem;
        height: 1.5rem;
    }

    .menu__icon span {
        height: 2px;
    }

    .menu-panel__list li {
        margin: 2rem 0;
    }

    .menu-panel__list a {
        font-size: 2rem;
        letter-spacing: 0.25em;
    }
}

/* END OF HEADER + MENU + LOGO
---------------------------------------- */


/* SECTION: Hero
---------------------------------------- */
#hero {
    position: relative;
    z-index: 30;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-accent);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}

#hero .hero-chevron {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 3.213rem;
    padding-bottom: 5.625rem;
    
    background-image: 
        linear-gradient(
            to right, 
            rgba(0, 0, 0, 0.5) 0px, 
            transparent 8px, 
            transparent calc(100% - 8px), 
            rgba(0, 0, 0, 0.5) 100%
        ),
        url('../images/bg-shapes-bl.webp');
    background-repeat: no-repeat;
    background-attachment: scroll, fixed;
    background-size: cover, cover;
    background-position: center, bottom;
    clip-path: polygon(0 0, 100% 0, 100% 93.8%, 50% 98.8%, 0 93.8%);
}

#hero .hero-banner {
    position: relative;
    margin-bottom: 1.75rem;
}

#hero .hero-banner .overlay {
    position: absolute;
    top: 2rem;
    left: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-inline: 0.625rem;
}

#hero .hero-banner .overlay h1 {
    margin-bottom: 1.25rem;
}

#hero .hero-banner .overlay h1 > hr {
    border: none;
    width: 50%;
    height: 2px;
    margin-inline: auto;
    background: linear-gradient(
        to right,
        #000000 6.15%,
        #E3C368 43.27%,
        #DAAE34 56.59%,
        #000000 100%
    );
}

@media screen and (min-width: 769px) {
    #hero {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
    }

    #hero .hero-chevron {
        clip-path: polygon(0 0, 100% 0, 100% 86.8%, 50% 98.8%, 0 86.8%);
    }
}

.scroll__label {
    position: absolute;
    top: 1.563rem;
    right: -37%;
    display: flex;
    gap: 0.313rem;
    font-size: 0.438rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-white);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.scroll__label::after {
    content: "";
    width: 6.985rem;
    height: auto;
    transform: translateY(-3px);
    background: url(../images/icon-arrow-scroll.svg) no-repeat center / contain;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
}

.hero-info .divider {
    width: 5.875rem;
}

.hero-info__intro {
    line-height: 1.58;
}

.hero-info__outro {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-info__outro > span {
    font-size: 1.125rem;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    width: 100%;
    margin-top: -5rem;

    font-family: var(--font-zen);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-white);
    text-align: center;
}

.hero-blurbs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 1.563rem;
}

.hero-blurb__item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 6rem;
    height: 6rem;
    padding-block: 0.5rem;

    font-size: 0.688rem;
    font-family: var(--font-notos-sans);
    font-weight: 400;

    border: 1px solid transparent;
    border-radius: 50%;
    background-image:
        linear-gradient(#000000, #000000),
        linear-gradient(to right, #F8D768 0%, #ca8f2a 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.hero-blurb__item > img {
    width: 2.5rem;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;

    width: 100%;
    padding: 0.96rem 3.5rem 0.96rem 1.25rem;
    font-family: var(--font-notos-sans);
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.14em;
    text-decoration: none;
    box-sizing: border-box;

    border: 1px solid transparent;
    border-radius: 2.5rem;

    background-image:
        linear-gradient(to bottom, #ecd289 0%, #d8b033 100%),
        linear-gradient(to left, #ecd289 0%, #d8b033 100%);

    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cta__button::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: url('../images/icon-btn-arrow.png') no-repeat center / contain;
}

.hero-cta .cta__button {
    margin-top: 2rem;
}

@media screen and (min-width: 768px) {
    #hero .hero-chevron {
        padding-block: 6rem 8rem;
    }

    #hero .hero-banner {
        margin-bottom: 3rem;
    }

    .hero-info {
        gap: 2rem;
        margin-bottom: 2rem;
        font-size: 2rem;
    }

    .hero-cta {
        margin-top: -13rem;
        font-size: 1rem;
    }

    .hero-blurb__item {
        width: 10rem;
        height: 10rem;
        font-size: 1rem;
    }

    .hero-blurb__item > img {
        width: 4rem;
    }

    .hero-info__outro {
        font-size: 1.5rem;
    }

    .cta__button {
        font-size: 1.5rem;
    }

    .scroll__label {
            top: 1rem;
            right: -40%;
        font-size: 1rem;
    }

    .scroll__label::after {
        width: 7.25rem;
    }

    .hero-info .divider {
        width: 12rem;
    }
}

@media screen and (max-width: 374px) {
    .hero-info {
        font-size: 1rem;
    }

    .scroll__label {
        position: absolute;
        top: 1.563rem;
        right: -43%;
    }

    .hero-blurb__item {
        width: 5rem;
        height: 5rem;
        font-size: 0.6rem;
    }

    .hero-blurb__item > img {
        width: 2rem;
    }

    
}

/* END OF SECTION: Hero
---------------------------------------- */


/* SECTIONS: Title
---------------------------------------- */
.section .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section .title > span {
    margin-bottom: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #808080;
    letter-spacing: 0.3em;
}

.section .title > h2 {
    font-size: 1.718rem;
    font-weight: 700;
    line-height: 1.29;
    text-align: center;
}

.section .title > .divider {
    margin-block: 2.188rem;
}

.section .title--left {
    align-items: flex-start;
    margin-bottom: 4.688rem;
}

.section .title--left > span {
    color: var(--text-stroke);
}

.section .title--left > h2 {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.3;
}

@media screen and (min-width: 768px) {
    section {
        padding-top: 4rem;
    }

    .section .title > span {
        font-size: 1rem;
    }

    .section .title > h2 {
        font-size: 2.5rem;
    }

    .section .title > .divider {
        margin-block: 3.5rem;
    }
}

@media screen and (max-width: 374px) {
    .section .title--left > h2 {
        font-size: 1.25rem;
    }
}

/* END OF SECTIONS: Title
---------------------------------------- */


/* SECTIONS 01: EMPATHY
---------------------------------------- */
#empathy {
    position: relative;
    margin-top: -3rem;
    padding-top: 6rem;
    padding-bottom: 0;
    background-color: #f7f6f3;
}

#empathy .title > span {
    font-size: 0.75rem;
}

.concerns-list {
    margin-bottom: 4.25rem;
}

.concerns-list ul {
    margin-bottom: 2.313rem;
}

.concerns-list ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-radius: 0.5rem;
    background-color: #ffffff;
}

.concerns-list ul li::before {
    content: url('../images/icon-checkmark.svg');
    width: 1.5rem;
    height: 1.5rem;
}

.concerns-list p {
    padding-block: 0.656rem;
    padding-left: 0.5rem;
    border: 1px solid var(--color-stroke);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    text-align: center;
}

.quote {
    position: relative;
    text-align: center;
    margin-bottom: 3.75rem;
    padding-block: 0.5rem;
}

.quote::before,
.quote::after {
    content: "";
    position: absolute;
    width: 2.021rem;
    height: 4.625rem;
}

.quote::before {
    top: 0;
    left: 0;
    border-top: 1px solid var(--color-semiborder);
    border-left: 1px solid var(--color-semiborder);
    border-bottom: 1px solid var(--color-semiborder);
}

.quote::after {
    bottom: 0;
    right: 0;
    border-top: 1px solid var(--color-semiborder);
    border-bottom: 1px solid var(--color-semiborder);
    border-right: 1px solid var(--color-semiborder);
}

.quote .quote__text {
    display: flex;
    justify-content: center;
    padding-left: 1.25rem;
}

.quote .quote__text p {
    position: relative;
    font-size: 1.438rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #be8f2b;
}

.banner-heading {
    display: flex;
    align-items: center;
    width: 100%;
}

.banner-heading::before,
.banner-heading::after {
    content: '';
    flex: 1;
    height: 12px;
}

.banner-heading::before {
    background-image:
        radial-gradient(circle 5px at 5px 50%, #be8f2b 99%, transparent 100%),
        linear-gradient(#be8f2b, #be8f2b);
    background-size: 10px 10px, 100% 1px;
    background-position: left center, center;
    background-repeat: no-repeat;
}

.banner-heading::after {
    background-image:
        radial-gradient(circle 5px at 5px 50%, #be8f2b 99%, transparent 100%),
        linear-gradient(#be8f2b, #be8f2b);
    background-size: 10px 10px, 100% 1px;
    background-position: right center, center;
    background-repeat: no-repeat;
}

.banner-badge {
    display: inline-block;
    background-color: #be8f2b;
    color: #ffffff;
    padding: 0.125rem 1.2rem;
    font-size: 1.166rem;
    letter-spacing: 0.02em;

    clip-path: polygon(
        0.625rem 0%,
        calc(100% - 0.625rem) 0%,
        100% 50%,
        calc(100% - 0.625rem) 100%,
        0.625rem 100%,
        0% 50%
    );
}

.factors > img {
    width: 6.25rem;
    margin: 1.5rem auto 1.25rem;
}

.factors > p {
    margin-bottom: 1.375rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
}

.divider-icon {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 1.5rem;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    flex: 1;
    height: 2px;

    background-image: radial-gradient(circle, #C8952A 1px, transparent 1px);
    background-size: 4px 2px;
    background-repeat: repeat-x;
    background-position: center;
}


.divider-icon img {
  width: 1.125rem;
  height: auto;
  flex-shrink: 0;
}

#design-matters {
    padding-block: 3.75rem;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background: url(../images/bg-shapes-bl.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
}

#design-matters .row-title {
    margin-bottom: 3.5rem;
    color: var(--text-white);
    text-align: center;
}

.row-title > span {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.5rem;
    letter-spacing: 0.54em;
    line-height: 1;
}

.row-title > h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
}

.row-title > h2 > span {
    color: var(--text-accent);
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.cards--results {
    gap: 2.363rem;
    margin-bottom: 2.6rem;
}

.cards--results .card {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 1.25rem 1rem 1rem;
    border: 1px solid #ceb26a;
    border-radius: 0.625rem;
}

.cards--results .card__body {
    color: var(--text-white);
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.cards--results .card__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.cards--results .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.cards--results .card__banner-tag {
    padding: 0 0.75rem;
    font-family: var(--font-notos-sans);
    font-size: 0.75rem;
    color: #000000;
    letter-spacing: 0.2em;
    white-space: nowrap;
    border-radius: 0.25rem;
    background-color: #ceb26a;
}

.cards--results .card__title {
    margin-top: 0.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: 0.02em;
}

.cards--results .card__text {
    font-family: var(--font-notos-sans);
    font-size: 0.938rem;
}

.cards--results .card__text span {
    color: var(--text-accent);
}

.cards--results .divider {
    width: 9.8rem;
    margin-inline: 0;
    margin-block: 0.75rem;
}

.design-outro > p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.688rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-align: center;
}

.design-outro > p > img {
    width: 1.643rem;
    height: 1.643rem;
}

.design-outro > p:last-child {
    margin-top: 0.5rem;
    font-size: 1.144rem;
    letter-spacing: 0.06em;
}

@media screen and (min-width: 768px) {
    #empathy .title > span {
        font-size: 1rem;
    }

    .concerns-list ul li,
    .concerns-list p {
        font-size: 1.5rem;
    }

    .quote {
        margin-bottom: 2.75rem;
    }

    .quote .quote__text p {
        font-size: 2rem;
    }

    .row-title > span {
        font-size: 1rem;
    }

    .row-title > h2 {
        font-size: 2.75rem;
    }

    #design-matters {
        padding-block: 4.5rem;
    }

    .cards--results .card__body {
        margin-top: -2.5rem;
        padding: 3.5rem 1rem 1.75rem;
    }

    .cards--results .card__title {
        font-size: 2rem;
    }

    .cards--results .divider {
        margin-block: 1.5rem 2rem;
    }

    .cards--results .card__text {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 374px) {
    .concerns-list ul li {
        font-size: 0.85rem;
        margin-bottom: 1.125rem;
    }

    .factors > p {
        font-size: 0.938rem;
    }

    .cards--results .card__title {
        font-size: 1.25rem;
    }

    .cards--results .card__text {
        font-size: 0.8rem;
    }

    .design-outro > p {
        font-size: 1.5rem;
    }

    .design-outro > p:last-child {
        font-size: 0.938rem;
    }
}

/* END OF SECTIONS 01: EMPATHY
---------------------------------------- */


/* SECTIONS 02: EVIDENCE
---------------------------------------- */
#evidence {
    padding-block: 4.688rem 0;
}

#evidence .cards {
    gap: 6.25rem;
    margin-bottom: 4.375rem;
}

.card--evidence {
    position: relative;
    background-color: #f9f6f2;
    padding-block: 2.188rem 1.5rem;
}

.card--evidence .card__banner {
    position: absolute;
    top: -0.938rem;
    left: -1.156rem;
    padding: 0.45rem 0.75rem 0.45rem 1.156rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.04em;
    line-height: 1;
    background-color: var(--color-stroke);
}

.card--evidence .card__title {
    margin-bottom: 0.938rem;
    padding-inline: 1rem;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.38;
}

.card--evidence .card__challenges {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card--evidence .card__image {
    width: 9.21rem;
    padding: 0.5rem;
    background-color: var(--bg-white);
}

.challenge__content {
    position: relative;
    padding: 1.5rem 0.625rem 0.75rem 0.938rem;
    background-color: var(--bg-white);
}

.challenge__content > span {
    position: absolute;
    top: -0.875rem;
    left: 0.938rem;
    padding: 0.313rem 0.4rem 0.313rem 0.6rem;
    font-family: var(--font-notos-sans);
    font-size: 1.079rem;
    color: var(--text-white);
    letter-spacing: 0.2em;
    line-height: 1;
    background-color: #60460d;
}

.challenge__content p {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.57;
}

.challenge__content p > span {
    color: #b78d27;
}

.challenge__arrow {
    width: 0;
    height: 0;
    margin-inline: auto;
    margin-block: 1.563rem;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #60460d;
}

.card--evidence .card__resolve {
    margin-bottom: 2rem;
    padding-inline: 1.156rem;
}

.card--evidence .card__text {
    position: relative;
    padding-block: 1.5rem;
    border-block: 1px solid #666464;
}

.card--evidence .card__text > span {
    position: absolute;
    top: -0.813rem;
    left: 0;
    padding: 0.25rem 0.4rem 0.25rem 0.6rem;
    font-family: var(--font-notos-sans);
    font-size: 1.034rem;
    color: var(--text-white);
    letter-spacing: 0.16em;
    line-height: 1;
    background-color: #60460d;
}

.card--evidence .card__text > p {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.57;
}

.card--evidence .card__costs {
    padding-inline: 0.938rem;
}

.costs__box {
    width: 100%;
}

.costs__box .costs__title {
    padding-block: 0.188rem 0.313rem;
    font-family: var(--font-notos-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.16em;
    line-height: 1;
    text-align: center;
    background-color: #b78d27;
}

.costs__box .costs__body {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.125rem;
    padding-bottom: 1.5rem;
    background-color: var(--bg-white);
}

.costs__box .costs__body > span {
    font-weight: 700;
    color: #b78d27;
    line-height: 1;
}

.costs__box .costs__body > span:nth-child(1) {
    font-size: 3.194rem;
    font-weight: 500;
}

.costs__box .costs__body > span:nth-child(2) {
    margin-bottom: -0.25rem;
    font-size: 5.976rem;
}

.costs__box .costs__body > span:nth-child(3) {
    font-size: 3.846rem;
}

.costs__box .costs__body > span:last-child {
    position: relative;
    margin-bottom: 0.188rem;
    font-size: 1.5rem;
    writing-mode: vertical-rl;
    color: var(--color-primary);
    letter-spacing: -0.3em;
}

.costs__box .costs__body .costs__body--note {
    position: absolute;
    bottom: -1rem;
    right: -0.5rem;
    width: max-content;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    writing-mode: initial;
}

.costs__box .costs__note {
    padding-inline: 0.75rem;
    font-family: var(--font-notos-sans);
    font-size: 0.813rem;
    color: #666464;
    letter-spacing: 0.04em;
    line-height: 1.58;
}

@supports (-webkit-hyphens:none) {
    .costs__box .costs__body > span:last-child {
        margin-bottom: 0;
        letter-spacing: 0.1em;
    }

    .costs__box .costs__body .costs__body--note {
        bottom: -0.875rem;
        right: -0.625rem;
    }
}

#definition {
    padding-block: 3.75rem !important;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/bg-shapes-bl.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
}

.definition__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.definition__title span {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-stroke);
}

.definition__title h2 {
    font-size: 1.563rem;
    font-weight: 700;
    color: var(--text-white)
}

.definition__image {
    margin-bottom: 2.188rem;
    margin-inline: auto;
}

.definition__text {
    padding: var(--container-padding);
    font-size: 0.965rem;
    line-height: 1.65;
    color: var(--text-white);
}

.definition__text span {
    color: var(--text-accent);
}

#brand-diagnosis {
    margin-bottom: -1.375rem;
    padding: 2.5rem 0 4.75rem;
    background-color: #424242;
}

#brand-diagnosis .title {
    align-items: center;
    margin-bottom: 1.5rem;
}

#brand-diagnosis .title h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: var(--text-white);
    text-align: center;
}

#brand-diagnosis .title  h2 > span {
    font-size: 0.625rem;
    color: var(--text-stroke);
    letter-spacing: 0.54em;
}

@media screen and (min-width: 768px) {
    .card--evidence {
        padding-block: 3rem 2.5rem;
    }

    .card--evidence .card__banner {
        font-size: 1.5rem;
    }

    .card--evidence .card__title {
        font-size: 2rem;
    }

    .card--evidence .card__image {
        width: 15rem;
    }

    .challenge__content > span,
    .card--evidence .card__text > span {
        font-size: 1.5rem;
    }

    .challenge__content p,
    .card--evidence .card__text > p {
        font-size: 1.25rem;
    }

    .card--evidence .card__resolve {
        margin-bottom: 3rem;
    }

    .card--evidence .card__text {
        padding-block: 2.5rem;
    }

    .challenge__arrow {
        margin-block: 2.5rem;
    }

    .costs__box .costs__title {
        font-size: 1.75rem;
    }

    .costs__box .costs__body {
        gap: 0.5rem;
    }

    .costs__box .costs__body > span:nth-child(1),
    .costs__box .costs__body > span:nth-child(3) {
        font-size: 5rem;
    }

    .costs__box .costs__body > span:nth-child(2) {
        font-size: 9rem;
    }

    .costs__box .costs__body > span:last-child {
        font-size: 2rem;
    }

    .costs__box .costs__note {
        font-size: 1.25rem;
    }

    .definition__title span {
        font-size: 1rem;
    }

    .definition__title h2 {
        font-size: 2rem;
    }

    .definition__text {
        font-size: 1.25rem;
    }

    #brand-diagnosis .title {
        margin-bottom: 3rem;
    }

    #brand-diagnosis .title h2 {
        gap: 1.25rem;
        font-size: 2rem;
    }

    #brand-diagnosis .title h2 > span {
        font-size: 1rem;
    }

    .cta .cta__button {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 374px) {
    .cta__button {
        font-size: 1rem;
    }

    .card--evidence .card__title {
        font-size: 1rem;
    }

    .challenge__content > span {
        position: absolute;
        top: -0.675rem;
        left: 0.938rem;
        font-size: 0.9rem;
    }

    .challenge__content p {
        font-size: 0.75rem;
    }

    .costs__box .costs__body > span:nth-child(1) {
        font-size: 2.5rem;
    }

    .costs__box .costs__body > span:nth-child(2) {
        font-size: 4.5rem;
    }

    .costs__box .costs__body > span:last-child {
        font-size: 1.25rem;
    }

    .definition__title h2 {
        font-size: 1.25rem;
    }
}

/* END OF SECTIONS 02: EVIDENCE
---------------------------------------- */


/* SECTIONS 03: SOLUTION
---------------------------------------- */
#solution {
    padding-block: 4.375rem 0;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background-color: var(--bg-gray);
}

#solution .title > h2 {
    font-size: 1.39rem;
}

#solution .cards {
    gap: 5.625rem;
    margin-bottom: 3.75rem;
}

#solution .cards:last-child {
    margin-bottom: 4.5rem;
}

.card--solution {
    max-width: var(--container-width);
    margin-inline: auto;
}

.card--solution .card__header {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-left: 1.25rem;
}

.card--solution:nth-child(even) .card__header {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 1.25rem;
}

.card--solution:nth-child(even) .card__header .card__title {
    bottom: 0;
    left: auto;
    right: 0
}

.card--solution .card__number {
    margin-top: 0.75rem;
    font-size: 4.688rem;
    color: #cccccc;
    letter-spacing: 0.02em;
    line-height: 1;
}

.card--solution .card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-block: 0.375rem;
    padding-left: 1.25rem;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    line-height: 1;
    background-color: var(--bg-white);
}

.card--solution .card__image {
    overflow: auto;
}

.card--solution .card__body {
    margin-bottom: 1.5rem;
    padding: var(--container-padding);
    font-size: 0.985rem;
    font-weight: 700;
    text-align: center;
}

.card--solution .card__body span {
    color: var(--text-stroke);
}

.card--solution:nth-child(3) .card__body {
    font-size: 0.9rem;
    text-align: left;
}

/* Component: Steps flow */
.steps-container {
    background-color: #e6e6e6;
    padding: 0.625rem;
    text-align: center;
    border-radius: 0.625rem;
}

.steps__title {
    margin: 0 0 0.6rem 0;
    font-family: var(--font-notos-sans);
    font-size: 1.063rem;
    color: #666464;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.577rem;
    height: 3.577rem;
    border-radius: 50%;
    font-family: var(--font-notos-sans);
    font-size: 0.625rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    background-color: var(--bg-white);
}

.steps__item--min {
    font-size: 0.5rem;
}

.steps__arrow {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #b7d100;
}

#creative-team {
    margin-bottom: -1.5rem;
    padding: 5.06rem 0;
    background: url(../images/bg-creative-team.webp) no-repeat;
    background-size: cover;
    background-position: top;
}

#creative-team .row-title {
    margin-bottom: 2.5rem;
}

#creative-team .row-title h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.613rem;
    line-height: 1;
    text-align: center;
    text-shadow: 0.438rem 0.438rem 0.438rem #000000;
    letter-spacing: -0.04em;
}

#creative-team .row-title .team-count {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    font-size: 6.118rem;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

#creative-team .row-title .team-count > span {
    padding-bottom: 0.5rem;
    font-size: 3.521rem;
}

#creative-team .row-title .team-count > span:last-child {
    font-size: 2.58rem;
}

#creative-team .team__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    line-height: 1.56;
    color: var(--text-white);
    text-align: center;
}

#start-challenges {
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -1.5rem;
    padding-block: 2.75rem;
    background-color: var(--bg-white);
    border-radius: 1.5rem;
}

#start-challenges .sub-start {
    margin-bottom: 1.4rem;
    font-size: 0.563rem;
    font-weight: 700;
    color: var(--text-accent);
    letter-spacing: 0.42em;
}

#start-challenges > h2 {
    font-size: 1.578rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-align: center;
}

#start-challenges > h2 > span {
    font-size: 1.75rem;
    color: #b78d27;
}

#start-challenges .divider {
    margin-block: 1.5rem;
}

#start-challenges > p:last-child {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

#start-challenges > p:last-child > span {
    color: #b78d27;
}

@media screen and (min-width: 768px) {
    #solution .title > h2 {
        font-size: 2.25rem;
    }

    #solution .cards {
        margin-bottom: 5rem;
    }

    .card--solution .card__header {
        margin-bottom: 2.5rem;
    }

    .card--solution .card__number {
        margin-top: 5rem;
        margin-right: 1rem;
        font-size: 6rem;
    }

    .card--solution .card__title {
        font-size: 2.5rem;
    }

    .card--solution .card__body {
        margin-bottom: 2.5rem;
        font-size: 1.5rem;
    }

    .steps {
        gap: 0.75rem;
    }

    .steps__item {
        width: 7.5rem;
        height: 7.5rem;
        font-size: 1.25rem;
    }

    .steps__item--min {
        font-size: 1rem;
    }

    .card--solution:nth-child(even) .card__number {
        margin-left: 1rem;
    }

    .card--solution:nth-child(3) .card__body {
        font-size: 1.5rem;
    }

    #creative-team {
        padding-block: 6rem;
    }

    #creative-team .row-title h2 {
        font-size: 2.5rem;
    }

    #creative-team .row-title .team-count {
        margin-bottom: 1rem;
        font-size: 11rem;
    }

    #creative-team .row-title .team-count > span {
        font-size: 7rem;
    }

    #creative-team .row-title .team-count > span:last-child {
        font-size: 6rem;
    }

    #creative-team .team__text {
        font-size: 2rem;
    }

    #start-challenges .sub-start {
        font-size: 0.75rem;
    }

    #start-challenges > h2 {
        font-size: 2rem;
    }

    #start-challenges > h2 > span {
        font-size: 2.5rem;
    }

    #start-challenges > p:last-child {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 374px) {
    #solution .title > h2 {
        font-size: 1.125rem;
    }
    
    .card--solution .card__number {
            font-size: 4rem;
    }

    .steps-container {
        padding: 0.5rem;
    }

    .steps__item {
        width: 3rem;
        height: 3rem;
        font-size: 0.5rem;
    }

    #start-challenges > h2 {
        font-size: 1.25rem;
    }

    #start-challenges > h2 > span {
        font-size: 1.5rem;
    }
    
    #start-challenges > p:last-child {
        font-size: 0.938rem;
    }
}

/* END OF SECTIONS 03: SOLUTION
---------------------------------------- */


/* SECTIONS 06: BENEFIT
---------------------------------------- */
#benefit {
    padding-block: 4.688rem 1rem;
    background: url(../images/bg-shapes-bl.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
}

.consult {
    margin-bottom: 3.75rem;
    padding: 0.675rem;
    background-color: #80808060;
}

.consult__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0.438rem;
    border: 1px solid var(--color-stroke);
}

.consult__details .consult__free {
    margin-bottom: 1.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-stroke);
    letter-spacing: 0.36em;
    line-height: 1;
    text-align: center;
}

.consult__details .consult__title {
    margin-bottom: 1.563rem;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 0.06em;
    line-height: 1;
}

.consult__details .consult__text {
    margin-bottom: 1.375rem;
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.04em;
    line-height: 1.46;
    text-align: center;
}

.consult__details .consult__tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.875rem;
}

.consult__details .consult__tags > li {
    padding: 0.313rem 0.688rem;
    border-radius: 1rem;
    font-family: var(--font-notos-sans);
    font-size: 0.788rem;
    letter-spacing: 0.08em;
    line-height: 1;
    background-color: var(--bg-accent);
}

.consult__details .consult__note {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.1em;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    #benefit {
        padding-block: 6rem 4rem;
    }

    .consult {
        margin-bottom: 6rem;
        padding: 1rem;
    }

    .consult__details {
        padding: 3.5rem 1rem;;
    }

    .consult__details .consult__free {
        font-size: 1rem;
    }

    .consult__details .consult__title {
        font-size: 2rem;
    }

    .consult__details .consult__text {
        margin-bottom: 3rem;
        font-size: 1.25rem;
    }

    .consult__details .consult__tags {
        margin-bottom: 0;
    }

    .consult__details .consult__tags > li {
        padding: 1rem 1.25rem;
        border-radius: 1.5rem;
        font-size: 1.5rem;
    }

    .consult__details .consult__note {
        font-size: 1rem;
    }
}

@media screen and (max-width: 374px) {
    .consult__details .consult__title {
        font-size: 1rem;
    }

    .consult__details .consult__tags > li {
        font-size: 0.55rem;
    }
}

/* END OF SECTIONS 06: BENEFIT
---------------------------------------- */


/* FOOTER
---------------------------------------- */
.crosslink-details {
    margin-bottom: 1.063rem;
}

.crosslink-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-inline: 1.688rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid var(--color-white);
    font-family: var(--font-yu-gothic);
    color: var(--text-white);
}

.crosslink-info img {
    width: 7.584rem;
}

.crosslink-info p {
    font-weight: 700;
}

.crosslink-info p span {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.3;
}

.crosslink-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.75rem;
    font-family: var(--font-yu-gothic);
    font-size: 0.478rem;
    color: var(--text-white);
    line-height: 1.42;
}

.crosslink-address p {
    display: flex;
    justify-content: space-between;
}

.footer__nav {
    background-color: #5e585b;
}

.footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    padding-block: 0.219rem;
}

.footer__nav ul li {
    display: flex;
    align-items: center;
}

.footer__nav ul li a {
    font-family: var(--font-yu-gothic);
    font-size: 0.5rem;
    color: #cac7c8;
}

.footer__copy {
    font-family: var(--font-yu-gothic);
    font-size: 0.5rem;
    color: #a6a1a4;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .crosslink-info {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .crosslink-info img {
        width: 15rem;
    }

    .crosslink-info p span {
        font-size: 1rem;
    }

    .crosslink-info p {
        font-size: 1.5rem;
    }

    .crosslink-details {
        margin-bottom: 2rem;
    }

    .crosslink-address {
        font-size: 1rem;
    }

    .footer__nav ul {
        gap: 3rem;
        margin-bottom: 1.5rem;
        padding-block: 0.5rem;
    }

    .footer__nav ul li a {
        font-size: 1rem;
    }

    .footer__copy {
        font-size: 1rem;
    }
}

@media screen and (max-width: 374px) {
    .crosslink-info {
        padding-inline: 0.5rem;
    }
}

/* END OF FOOTER
---------------------------------------- */
