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

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

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

    --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);
}

.mb-35 {
    margin-bottom: 2.188rem;
}


/* HEADER + MENU + LOGO
---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    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-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: 20;
    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;
    width: 100%;
    background-color: var(--bg-accent);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    padding: 0;
    overflow: hidden;
}

#hero .hero-chevron {
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 4.375rem;
    padding-bottom: 5.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
    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;
    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::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 2.688rem;
    height: 2.688rem;
    border-top: 1px solid var(--color-white);
    border-left: 1px solid var(--color-white);
}

#hero .hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#hero .hero-banner .overlay h1 {
    margin-top: auto;
    margin-bottom: -1.25rem;
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-align: center;
    text-shadow: 0.438rem 0.438rem 0.438rem #000000;
}

#hero .hero-banner .overlay h1 > .top {
    letter-spacing: 0.02em;
}

#hero .hero-banner .overlay h1 > hr {
    width: 98%;
    border: 0;
    border-top: 3px solid var(--color-accent);
    margin-inline: auto;
    box-shadow: 0.438rem 0.438rem 0.438rem #000000;
}

#hero .hero-banner .overlay p {
    margin-top: auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-gray);
    line-height: 1;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

@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: 0;
    right: -39%;
    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: 1.125rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    
    font-family: var(--font-notos-sans);
    font-weight: 500;
    color: var(--text-white);
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}

.hero-cta__title {
    margin-bottom: 0.875rem;
    padding: 0.25rem 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    background-color: var(--bg-white);
}

.cta__button {
    padding: 0.606rem 2.5rem 0.606rem 1.563rem;
    font-size: 0.938rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.14em;
    background-color: var(--bg-accent);
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

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

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

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

    #hero .hero-banner::before {
        width: 7rem;
        height: 7rem;
    }

    #hero .hero-banner .overlay h1 {
        font-size: 2.875rem;
        margin-bottom: -2rem;
    }

    #hero .hero-banner .overlay p {
        font-size: 2rem;
    }

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

    .hero-info__outro,
    .hero-cta__title {
        font-size: 1.75rem;
    }

    .hero-cta__title {
        margin-bottom: 2rem;
    }

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

    .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;
    }
}

/* 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;
    }
}

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


/* SECTIONS 01: EMPATHY
---------------------------------------- */
#empathy {
    padding-bottom: 0;
}

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

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

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

.concerns-list ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.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: 1.75rem;
    padding-block: 1.813rem;
}

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

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

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

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

.quote .quote__text p {
    position: relative;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #4d4449;
}

.quote .quote__text span {
    position: absolute;
    font-size: 3rem;
    color: var(--text-stroke);
}

.quote .quote__text span:nth-child(1) {
    top: -1rem;
    left: -1.5rem;
}

.quote .quote__text span:last-child {
    bottom: -1.25rem;
    right: auto;
    margin-left: 0.125rem;
}

.challenges__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    margin-bottom: 5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.challenges__text p:last-child {
    color: var(--text-stroke);
}

#design-matters {
    padding-block: 3.75rem;
    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;
}

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

.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;
}

.card--results .card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card--results .card__banner {
    display: inline-flex;
    height: 1.75rem;
    font-family: var(--font-notos-sans);
    background-color: var(--bg-accent);
    overflow: hidden;
}

.card--results .card__banner-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35%;
    padding: 0 1rem 0 0.6rem;
    background-color: var(--bg-white);
    white-space: nowrap;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.card--results .card__banner-text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem 0 0.6rem;
    white-space: nowrap;
}

.card--results .card__number {
    margin-top: -0.75rem;
    font-size: 4.688rem;
    color: var(--text-white);
    letter-spacing: 0.02em;
    line-height: 1;
    opacity: 0.7;
}

.card--results .card__image {
    margin-bottom: 1.5rem;
}

.card--results .card__title {
    font-size: 1.313rem;
    font-weight: 700;
}

.card--results .card__text {
    font-size: 0.875rem;
}

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

.card--results .divider {
    margin-inline: 0;
    margin-block: 0.875rem 1.125rem;
}

.card--results .card__body {
    margin-top: -1.875rem;
    padding: 2.625rem 1rem 1.25rem;
    color: var(--text-white);
    background-color: #333333;
}

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

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

    #empathy .mb-35 {
        margin-bottom: 3rem;
    }

    .quote {
        margin-bottom: 2.75rem;
    }

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

    .challenges__text {
        font-size: 1.25rem;
    }

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

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

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

    .card--results .card__banner {
        height: 2.5rem;
        font-size: 1rem;
    }

    .card--results .card__number {
        font-size: 6rem;
    }

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

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

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

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

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


/* SECTIONS 02: SOLUTION
---------------------------------------- */
#solution {
    padding-block: 4.375rem 0;
    background-color: var(--bg-gray);
}

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

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

.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 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0.469rem 2.188rem;
    background-color: #e6e6e6;
}

.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;
}

.singleline .title > .divider {
    margin-block: 2rem 1.88rem;
}

.singleline > img {
    margin-bottom: 2.188rem;
}

.singleline__text {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.singleline__abilities {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.375rem;
}

.singleline__abilities > p {
    padding: 0.313rem 0.85rem;
    border-radius: 0.5rem;
    font-family: var(--font-notos-sans);
    font-size: 1.196rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.1em;
    background-color: #4a4a4a;
}

.singleline__abilities > img {
    width: 0.88rem;
}

#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.4rem;
    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);
}

@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;
    }

    .singleline > img {
        margin-bottom: 3rem;
    }

    .singleline .title > .divider {
        margin-block: 3rem 2.5rem;
    }

    .singleline__text {
        font-size: 1.25rem;
    }

    .singleline__abilities > p {
        padding: 1.25rem 1.5rem;
        font-size: 2rem;
    }

    .singleline__abilities > img {
        width: 1.5rem;
    }

    .singleline__abilities {
        margin-bottom: 6rem;
    }

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

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

    .definition__text {
        font-size: 1.25rem;
    }
}

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


/* SECTIONS 03: REASON
---------------------------------------- */
#reason {
    padding-block: 4.688rem 0;
}

#reason .cards {
    gap: 5.938rem;
    margin-bottom: 5.625rem;
}

.card--reason {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-left: 1.156rem;
}

.card--reason .card__header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding-left: 0.75rem;
    background-color: #f7f7f7;
}

.card--reason:nth-child(even) {
    padding-inline: 0 1.156rem;
}

.card--reason:nth-child(even) .card__header {
    align-items: flex-end;
    padding-left: 0;
}

.card--reason:nth-child(even) .card__number {
    padding-right: 0.75rem;
}

.card--reason:nth-child(even) .card__image {
    left: 0;
    right: auto;
}

.card--reason:nth-child(even) .card__body {
    padding-inline: 1.156rem 0;
}

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

.card--reason .card__title {
    width: fit-content;
    padding-block: 0.375rem;
    padding-left: 0.5rem;
    font-family: var(--font-notos-sans);
    font-size: 1rem;
    color: var(--text-white);
    letter-spacing: 0.06em;
    line-height: 1;
    background-color: var(--bg-accent);
    z-index: 1;
}

.card--reason .card__title span {
    margin-left: -0.5rem;
}

.card--reason .card__image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10.904rem;
    border: 0.438rem solid #e6e6e6;
    overflow: auto;
}

.card--reason .card__body {
    padding-right: 1.156rem;
    font-size: 0.938rem;
    font-weight: 700;
}

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

.card--reason .card__text {
    padding: 1rem 0.65rem 1.25rem 0.75rem;
    background-color: #f7f7f7;
}

#creative-team {
    padding-block: 4.063rem;
    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.938rem;
    letter-spacing: 0.02em;
    line-height: 1.56;
    color: var(--text-white);
    text-align: center;
}

#brand-diagnosis {
    padding-block: 2.5rem;
    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;
}

.cta {
    display: flex;
    justify-content: center;
}

.cta .cta__button {
    padding: 0.5rem 1.563rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    clip-path: none;
}

@media screen and (min-width: 768px) {
    #reason .title {
        margin-bottom: 7rem;
    }

    #reason .cards {
        gap: 7rem;
        margin-bottom: 8rem;
    }

    .card--reason .card__number {
        font-size: 6rem;
    }

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

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

    .card--reason .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;
    }

    #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;
    }
}

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


/* SECTIONS 04: 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__title > span {
    letter-spacing: -0.02em;
}

.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;
    }
}

@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;
    }
}

/* SECTIONS 04: EVIDENCE
---------------------------------------- */


/* SECTIONS 06: BENEFIT
---------------------------------------- */
#benefit {
    padding-block: 4.688rem 1rem;
    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;
}

#benefit .title {
    margin-bottom: 1.875rem;
}

#benefit .title > h2 {
    color: var(--text-white);
}

.row--benefit {
    margin-bottom: 3.125rem;
}

.card--benefit {
    position: relative;
    padding: 0.875rem 0.938rem 1rem;
    background-color: var(--bg-white);
}

.card--benefit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 2.023rem solid #daae34; 
  border-left: 2.2rem solid transparent;
}

.card--benefit .card__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.875rem;
    padding-inline: 0.25rem;
    padding-bottom: 0.625rem;
}

.card--benefit .divider {
    width: calc(100% - 0.5rem);
    margin-bottom: 1.375rem;
}

.card--benefit .card__number {
    margin-left: -0.313rem;
    margin-bottom: -0.125rem;
    font-size: 4.323rem;
    font-weight: 700;
    color: var(--text-stroke);
    opacity: 0.3;
    letter-spacing: -0.02em;
    line-height: 1;
}

.card--benefit .card__title {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.quote--start {
    margin-left: -0.625rem;
}

.quote--end {
    margin-right: -0.438rem;
}

.card--benefit .card__image {
    margin-inline: auto;
    margin-bottom: 1rem;
}

.card--benefit .card__text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.42;
}

.benefit-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-info h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.29;
}

.benefit-info h2 > span {
    color: var(--text-stroke);
}

.benefit-info .divider {
    margin-block: 1.875rem 1.5rem;
}

.benefit-info__start {
    margin-bottom: 1.688rem;
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

.benefit-info__start > span {
    color: var(--text-stroke);   
}

.benefit-info__experts {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    line-height: 1.6;
}

.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 .cta {
    margin-bottom: 1.25rem;
}

.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;
    }

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

    .card--benefit {
        padding: 1.5rem 1.5rem 2rem;
    }

    .card--benefit::after {
        border-top: 4.023rem solid #daae34;
        border-left: 4.2rem solid transparent;
    }

    .card--benefit .card__header {
        padding-bottom: 1.25rem;
        gap: 1.25rem
    }

    .card--benefit .card__number {
        font-size: 6rem;
    }

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

    .card--benefit .divider {
        margin-bottom: 1.75rem;
    }

    .card--benefit .card__image {
        margin-bottom: 1.5rem;
    }

    .card--benefit .card__text {
        font-size: 1.25rem;
    }

    .benefit-info h2 {
        font-size: 2rem;
    }

    .benefit-info .divider {
        margin-block: 2.5rem 2rem;
    }

    .benefit-info__start,
    .benefit-info__experts {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .benefit-info__start {
        margin-bottom: 2rem;
    }

    .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;
    }
}

/* 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;
    }
}

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