@charset "UTF-8";

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    background-color: #000000;
}

*,
ƒ√ *:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, "游ゴシック", "YuGothic", sans-serif;
    font-weight: 500;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: #333333;
    background-color: #fff5f0;
}

/* HubSpot フォーム — Noto Sans JP 適用 */
.hs-form-frame,
.hs-form-frame form,
.hs-form-frame input,
.hs-form-frame textarea,
.hs-form-frame select,
.hs-form-frame label,
.hs-form-frame fieldset,
.hs-form-frame .hs-button,
.hs-form-frame .hs-error-msg,
.hs-form-frame .hs-form-boolfieldset {
    font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.wrapper-top {
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: #fff5f0;
}

.container {
    padding: 0 28px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(255, 255, 255);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 1s ease;
}

.spinner {
    position: relative;
    display: flex;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 4px;
    margin: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    transform-origin: 50% 50%;
    animation: 1s linear infinite spin;
    opacity: 1;
    transition: opacity 1s ease;
}

.circle {
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
    stroke-opacity: 0.15;
    stroke-width: 5px;
}

.path {
    fill: none;
    stroke: #ff4701;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    padding: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
    position: relative;
}

.header__logo {
    width: 140px;
    height: 42px;
    display: flex;
    align-items: center;
}

.header__nav {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    width: 136px;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
}

@media screen and (min-width: 600px) {
    .header .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        width: 170px;
        height: auto;
    }

    .header__nav {
        position: relative;
        width: auto;
        right: 0;
        flex-wrap: wrap;
        align-items: center;
        column-gap: 20px;
    }
}

@media screen and (min-width: 768px) {
    .header__nav {
        column-gap: 52px;
    }
}

/* Hero */
.hero {
    position: relative;
    padding-top: 60px;
    padding-bottom: 12px;
    width: 100%;
    overflow-x: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

.hero__title__heading {
    margin-top: 12px;
}

.hero__title__heading img {
    width: 210px;
    height: auto;
    margin: 0 auto;
}

.hero__title__heading {
    margin-top: 12px;
}

/* === UNIVERSAL SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 24px;
    /* Reduced to pack content tighter */
}

.section-label {
    font-size: 14px;
    /* Increased font-size per request */
    font-weight: bold;
    color: #ff4701;
    letter-spacing: 2px;
    border: 1px solid #ff4701;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    /* Pill shape */
    margin-bottom: 20px;
    white-space: nowrap;
    /* Never wrap the label */
}

/* Specific adjustment for hero section label to not have huge margins */
.hero-label {
    margin-bottom: 0px;
}

.section-heading {
    font-size: min(28px, 3.8vw);
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
    white-space: nowrap;
}

.section-heading .accent {
    color: #ff4701;
}

.hero__campaign-box {
    margin-top: 16px;
    border: 3px solid #ffba00;
    border-radius: 8px;
    padding: 12px;
    background-color: transparent;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.hero__campaign-box__label {
    display: inline-block;
    color: #ffba00;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #ffba00;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.hero__right {
    position: relative;
    width: 80%;
    max-width: 320px;
    margin: 16px auto 0;
}

.hero__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.hero__hubspot-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32%;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

@media screen and (min-width: 600px) {
    .hero__left {
        margin: 0;
        position: relative;
        top: 0;
        transition: 1s;
        flex-shrink: 0;
    }

    .hero__left.appear {
        top: 0;
        opacity: 1;
    }

    .hero__right {
        margin: 0;
    }

    .hero__title {
        max-width: 480px;
        margin: 0;
    }

    .hero {
        padding-top: 60px;
        position: relative;
        overflow: visible;
    }

    .hero .container {
        position: relative;
        z-index: 1;
        top: 0;
        transition: 1s;
    }

    .hero__title__heading {
        font-size: 44px;
        line-height: 1;
        display: block;
    }

    .hero__title__heading img {
        width: 320px;
    }



}

@media screen and (min-width: 1024px) {
    .hero {
        padding-top: 60px;
        /* Adjust for fixed header */
    }

    .hero__title__heading {
        font-size: 44px;
        line-height: 1;
        display: block;
        margin-top: 24px;
    }

    .hero__title__heading img {
        width: 400px;
    }
}

/* Hero Weaving Line Animation Background */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: #fff5f0;
    /* Matches the steps section */
}

/* Woven City Style SVG Lines */
.weaving-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

.weaving-lines .line {
    fill: none;
    stroke: #ffba00;
    /* Warm accent matching the brand */
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: weaveLine 8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite both alternate;
}

.weaving-lines .line-1 {
    stroke: rgba(255, 71, 1, 0.3);
    /* Lowered opacity so it does not distract */
    animation-duration: 9s;
    animation-delay: 0s;
}

.weaving-lines .line-2 {
    stroke: rgba(255, 71, 1, 0.4);
    animation-duration: 11s;
    animation-delay: 1s;
}

.weaving-lines .line-3 {
    stroke: #ffba00;
    animation-duration: 10s;
    animation-delay: 2s;
}

.weaving-lines .line-4 {
    stroke: rgba(255, 186, 0, 0.5);
    animation-duration: 12s;
    animation-delay: 0.5s;
}

.weaving-lines .line-5 {
    stroke: rgba(255, 19, 76, 0.3);
    animation-duration: 14s;
    animation-delay: 1.5s;
}

@keyframes weaveLine {
    0% {
        stroke-dashoffset: 2000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes waveAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Security Notice */

/* Features */
.features {
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #ffffff;
}

.features .container {
    padding: 0;
    overflow: hidden;
}

.features__box {
    padding: 22px 0;
    /* Changed from 44px 28px to prevent double-padding with .container */
    position: relative;
    z-index: 1;
}

.features__box:last-child {
    padding-bottom: 10px;
    /* Reduced margin */
}

.features__box__text__heading {
    text-align: center;
}

.features__box__text__heading span {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 12px;
    font-size: min(24px, 5.5vw);
    /* Scaled down responsively so the unwrapped long text fits on screens without overflowing the padding */
    font-weight: bold;
    color: transparent;
    white-space: nowrap;
}

.features__box__text__description {
    margin-top: 28px;
}

.features__box__text__description p {
    font-size: 14px;
    line-height: 180%;
    font-weight: bold;
    margin-top: 12px;
    word-break: auto-phrase;
    overflow-wrap: break-word;
}

.features__box__figure {
    margin: 14px auto 0;
    width: 255px;
    height: auto;
}


@media screen and (min-width: 600px) {
    .features {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .features__box {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 60px;
        max-width: 960px;
        margin: 0 auto;
    }

    .features__box:last-child {
        padding-bottom: 30px;
    }

    .features__box:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .features__box__text {
        width: calc(50% - 30px);
    }

    .features__box__text__heading {
        text-align: left;
    }

    .features__box__text__heading span {
        margin-top: 12px;
        line-height: 1;
        padding: 12px;
        font-size: 32px;
        white-space: nowrap;
    }

    .features__box__text__description {
        margin-top: 48px;
    }

    .features__box__text__description p {
        font-size: 18px;
        margin-top: 24px;
    }

    .features__box__figure {
        margin-top: 0;
        width: calc(50% - 30px);
    }

    .features #feature01::after {
        width: 373px;
        height: 756px;
        top: 220px;
        bottom: auto;
        left: calc(50% + 340px);
    }

    .features #feature02::after {
        width: 856px;
        height: 422px;
        top: 460px;
        bottom: auto;
        left: calc(50% - 1170px);
    }

    .features #feature03::after {
        width: 662px;
        height: 330px;
        top: auto;
        bottom: 0;
        left: calc(50% + 90px);
    }
}

@media screen and (min-width: 768px) {
    .features__box {
        padding: 36px 28px;
    }

    .features__box__text__heading span {
        font-size: 40px;
    }
}

/* Mask Text Reveal Animations */
#mask01 span::before,
#mask01 span::after {
    background-color: #ff4701;
}

#mask02 span::before,
#mask02 span::after {
    background-color: #0361b1;
}

#mask03 span::before,
#mask03 span::after {
    background-color: #34a852;
}

#mask04 span::before,
#mask04 span::after {
    background-color: #ff7a59;
}

#mask01.active span,
#mask02.active span,
#mask03.active span,
#mask04.active span {
    position: relative;
    display: inline-block;
    z-index: 1;
    animation-name: textAppear;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

#mask01.active span::before,
#mask02.active span::before,
#mask03.active span::before,
#mask04.active span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    animation-name: slideInOut;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    z-index: 1;
}

#mask01.active span::after,
#mask02.active span::after,
#mask03.active span::after,
#mask04.active span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    animation-name: slideIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    z-index: -1;
}

#mask01.active span:nth-child(3)::before,
#mask01.active span:nth-child(3)::after,
#mask02.active span:nth-child(3)::before,
#mask02.active span:nth-child(3)::after,
#mask03.active span:nth-child(3)::before,
#mask03.active span:nth-child(3)::after,
#mask04.active span:nth-child(3)::before,
#mask04.active span:nth-child(3)::after {
    animation-delay: 0.25s;
}

#mask01.active span:nth-child(5)::before,
#mask01.active span:nth-child(5)::after,
#mask02.active span:nth-child(5)::before,
#mask02.active span:nth-child(5)::after,
#mask03.active span:nth-child(5)::before,
#mask03.active span:nth-child(5)::after,
#mask04.active span:nth-child(5)::before,
#mask04.active span:nth-child(5)::after {
    animation-delay: 0.5s;
}

@keyframes textAppear {
    0% {
        color: transparent;
    }

    40% {
        color: transparent;
    }

    100% {
        color: #fff;
    }
}

@keyframes slideIn {
    0% {
        width: 0;
    }

    40% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes slideInOut {
    0% {
        left: 0;
        width: 0;
    }

    40% {
        left: 0;
        width: 100%;
    }

    60% {
        left: 100%;
        width: 0%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

/* Desktop Section */

/* Premium */
.premium {
    padding-top: 32px;
    padding-bottom: 32px;
    background: #ffffff;
}

.premium .container {
    padding: 0;
}

.premium__list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
}

.premium__list__box {
    border-radius: 4px;
    border: solid 1px #4E6AAA;
    padding: 12px 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    column-gap: 16px;
    align-items: center;
}

.premium__list__box__figure {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.premium__list__box__figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.premium__list__box__text {
    color: #333333;
    text-align: center;
    font-weight: bold;
    width: 100%;
    flex: 1;
}

@media screen and (min-width: 600px) {
    .premium {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .premium__list {
        width: 100%;
        max-width: 888px;
        margin: 48px auto 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 32px;
        row-gap: 32px;
    }

    .premium__list__box {
        width: calc(50% - 16px);
    }

    .premium__list__box__figure {
        width: 90px;
    }

    .premium__list__box__text {
        font-size: 22px;
        text-align: left;
    }
}

/* Eight Team */

/* CTA */
.cta {
    background: linear-gradient(180deg, #0054FF 0.52%, #0244C9 100%);
    padding: 72px 0;
}

.cta__copy {
    margin: 32px auto 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}

@media screen and (min-width: 600px) {
    .cta {
        padding: 90px 0;
    }

    .cta__copy {
        margin-top: 40px;
        font-size: 34px;
    }
}

/* Footer */
.footer {
    width: 100%;
    padding-top: 32px;
    background: #000000;
}

.footer__row--upper {
    padding-top: 26px;
    position: relative;
}

.footer__row--upper::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer__row--lower {
    margin-top: 45px;
    padding-bottom: 50px;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
}

.footer__nav a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 32px;
    display: inline-block;
}

.footer__nav>li {
    margin-top: 16px;
    width: 100%;
}

.footer__copyright {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 42px;
}

.footer__logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer__logo--heyknot {
    height: 48px;
}

.footer__logo--afky {
    height: 24px;
}

@media screen and (min-width: 600px) {
    .footer {
        padding: 32px 28px 0;
    }

    .footer .container {
        width: 100%;
        max-width: 960px;
        padding: 0;
        margin: 0 auto;
    }

    .footer__row--upper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__logos {
        margin-top: 0;
        margin-left: 32px;
    }

    .footer__nav {
        flex-wrap: nowrap;
    }

    .footer__nav>li {
        margin-top: 0;
        margin-left: 60px;
        width: auto;
    }

    .footer__nav>li:first-child {
        margin-left: 0;
    }
}

/* Fixed CTA Bar */
.fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 10, 5, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    box-shadow: 0 -4px 30px rgba(255, 71, 1, 0.18);
    border-top: 1px solid rgba(255, 100, 30, 0.25);
}

.fixed-cta-bar.show {
    transform: translateY(0);
    opacity: 1;
}

.fixed-cta-bar.hide {
    transform: translateY(120%) !important;
    opacity: 0 !important;
}

.fixed-cta-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 60px;
    gap: 24px;
}

.fixed-cta-bar__copy {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.fixed-cta-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: linear-gradient(115deg, #ff6a1a 0%, #ff4701 45%, #e63500 100%);
    padding: 12px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 71, 1, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.fixed-cta-bar__link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    border-radius: 50px;
    pointer-events: none;
}

.fixed-cta-bar__link::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.2s ease;
}

.fixed-cta-bar__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(255, 71, 1, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fixed-cta-bar__link:hover::after {
    transform: translateX(3px);
}

.fixed-cta-bar__close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    transition: background 0.2s, color 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-cta-bar__close:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

@media screen and (max-width: 767px) {
    .fixed-cta-bar__inner {
        height: 69px;
        padding: 0 48px 0 16px;
        gap: 12px;
    }

    .fixed-cta-bar__copy {
        display: none;
    }

    .fixed-cta-bar__link {
        font-size: 14px;
        padding: 10px 24px;
    }

    .fixed-cta-bar__close {
        right: 10px;
    }
}




/* === NEW HEADER LAYOUT === */
.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    /* Increased back to a comfortable height to fix "too narrow" */
    max-width: 1100px;
    margin: 0 auto;
}

.header__logo {
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 16px;
    position: static;
    width: auto;
}

.header__nav__text-link {
    font-size: 16px;
    font-weight: bold;
    color: #ff4701;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #ff4701;
    padding: 7px 20px;
    border-radius: 30px;
    background: #fff;
    transition: 0.2s;
}

.header__nav__text-link:hover {
    opacity: 0.7;
}

/* === HERO UPDATED LAYOUT === */
.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 0 40px;
}

.hero__left {
    text-align: center;
    width: 100%;
}

.hero__title__line1 {
    display: block;
    font-size: min(20px, 4.5vw);
    font-weight: bold;
    color: #333333;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.text-orange {
    color: #ff4701;
    font-size: min(26px, 5.5vw);
    font-weight: 900;
}

.hero__title__line2 {
    display: block;
    font-size: min(30px, 6.5vw);
    font-weight: bold;
    color: #333333;
    margin-top: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.hero__campaign-box {
    background: #ffffff;
    border: 3px solid #ffba00;
    border-radius: 10px;
    padding: 16px 20px;
    width: 100%;
    margin: 48px auto 0;
    text-align: center;
}

.hero__campaign-box__label {
    display: inline-block;
    color: #ffba00;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 2px solid #ffba00;
    padding-bottom: 4px;
    margin-bottom: 12px;
}

.hero__campaign-box__body {
    font-size: 15px;
    color: #333333;
    font-weight: 600;
    line-height: 1.7;
}

@media screen and (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        gap: 0px;
        /* Bring them closer */
    }

    .hero__left {
        width: 100%;
        max-width: 500px;
        /* Slightly wider to fit text */
        flex: 0 1 500px;
    }

    .hero__right {
        width: 100%;
        max-width: 380px;
        /* Control image width */
        flex: 0 1 380px;
        position: relative;
    }
}

@media screen and (min-width: 600px) {
    .hero__inner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 32px;
        gap: min(48px, 3vw);
    }

    .hero__inner .hero__left {
        flex: 0 1 400px;
        max-width: 400px;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero__inner .hero__right {
        flex: 0 1 400px;
        max-width: 420px;
        min-width: 220px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__title__line1 {
        font-size: min(24px, 3.2vw);
        /* Fluid font tracking keeps nowrap text inside bounds */
        text-align: left;
        justify-content: flex-start;
    }

    .text-orange {
        font-size: min(28px, 3.8vw);
    }

    .hero__title__line2 {
        font-size: min(38px, 4.8vw);
        text-align: left;
    }

    .hero__campaign-box {
        margin: 48px 0 0 0;
        text-align: left;
    }
}

/* === STEPS SECTION === */
.steps-section {
    background: #fff5f0;
    padding-top: 32px;
    padding-bottom: 32px;
}

.steps-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.steps-section__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.steps-section__step {
    background: #ffffff;
    border: 2px solid #ff4701;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    flex: 1;
    max-width: 240px;
}

.steps-section__arrow {
    font-size: 32px;
    color: #ff4701;
    font-weight: bold;
    padding: 0 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.steps-section__step__num {
    font-size: 14px;
    font-weight: bold;
    color: #ff4701;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.steps-section__step__icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.steps-section__step__title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}

.steps-section__step__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .steps-section__grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .steps-section__arrow {
        transform: rotate(90deg);
        padding: 4px 0;
        justify-content: center;
    }

    .steps-section__step {
        max-width: 100%;
        width: 100%;
    }
}

/* === PRICING SECTION === */
.pricing {
    padding-top: 32px;
    padding-bottom: 32px;
    background: #fff5f0;
}

.pricing .container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.pricing__cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}

.pricing__card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 28px 32px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    position: relative;
}

.pricing__card--campaign {
    border-color: #ff4701;
    box-shadow: 0 8px 32px rgba(255, 71, 1, 0.12);
}

.pricing__card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4701;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 24px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing__card__name {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
}

.pricing__card__price {
    text-align: center;
    margin-bottom: 4px;
    line-height: 1;
}

.pricing__card__amount {
    font-size: 52px;
    font-weight: 900;
    color: #ff4701;
}

.pricing__card__unit {
    font-size: 16px;
    color: #555;
    font-weight: bold;
}

.pricing__card__note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 28px;
    margin-top: 4px;
}

.pricing__card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing__card__features li {
    padding: 10px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.pricing__card__features li:last-child {
    border-bottom: none;
}

.pricing__card__btn {
    display: block;
    text-align: center;
    background: #ff4701;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 14px;
    border-radius: 40px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pricing__card__btn:hover {
    opacity: 0.85;
}

.pricing__note {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 32px;
}

/* === CTA SECTION === */
.cta {
    background: #fff5f0;
    padding-top: 16px;
    padding-bottom: 32px;
}

.cta .container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta__copy {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    /* Dark text for light background */
    margin-bottom: 32px;
}

.cta__form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 680px;
    margin: 0 auto;
}

/* === FAQ: full-width clickable rows === */
.faq {
    padding-top: 32px;
    padding-bottom: 32px;
    background: #ffffff;
}

.faq .container {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq details {
    cursor: pointer;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq details:hover {
    border-color: #ff4701;
}

.faq summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-weight: bold;
    font-size: 15px;
    color: #333333;
    list-style: none;
    user-select: none;
    width: 100%;
}

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

.faq summary::after {
    content: "+";
    color: #ff4701;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq details[open] summary::after {
    content: "−";
}

.faq__answer {
    padding: 0 20px 24px;
    /* Increased bottom spacing inside open accordion */
    border-top: 1px dashed #eee;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    padding-top: 16px;
    /* Increased top spacing */
}

/* === FIXED BOTTOM CTA BAR === */

/* === USER CONSTRAINTS (Strict Layout) === */
/* 1. Global Padding (Applies to all) */
.hero .container,
.features .container,
.premium .container,
.steps-section .container,
.pricing .container,
.faq .container,
.cta .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

/* 2. Global Content Max-Width */
.hero .container,
.features .container,
.premium .container,
.steps-section .container,
.pricing .container {
    max-width: 1040px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Unify all non-heading text to a consistent size across all screens */
.hero__campaign-box__body,
.features__box__text__description p,
.premium__list__box__text,
.steps-section__step__desc,
.pricing__card__features li,
.pricing__card__note,
.faq__answer {
    font-size: 15px !important;
    line-height: 1.6 !important;
}