/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    background-image: url('images/dot-grid.png.webp');
    background-repeat: repeat;
    color: #26a000;
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 580px;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -49px;
    left: 0;
    width: 100%;
    height: 976px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 732px;
    background-image: url('images/hero-pattern.png');
    background-size: 1440px 732px;
    background-repeat: repeat;
    opacity: 0.21;
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 952px;
    z-index: 3;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/hero-gradient.png');
    background-size: cover;
    background-position: center;
}

.hero-stripe-animation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: repeating-linear-gradient(-45deg,
            rgba(169, 208, 59, 0.07) 0px,
            rgba(169, 208, 59, 0.07) 80px,
            rgba(38, 160, 0, 0.06) 80px,
            rgba(38, 160, 0, 0.06) 160px,
            rgba(6, 146, 62, 0.06) 160px,
            rgba(6, 146, 62, 0.06) 240px,
            transparent 240px,
            transparent 320px);
}

.hero-stripe-left {
    left: 0;
    clip-path: inset(0 100% 0 0);
    animation: stripeRevealLeft 2s ease-out forwards;
    animation-delay: 1s;
}

.hero-stripe-right {
    left: 0;
    clip-path: inset(0 0 0 100%);
    animation: stripeRevealRight 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes stripeRevealLeft {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes stripeRevealRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.hero-triangle {
    position: absolute;
    z-index: 8;
}

.hero-triangle-1 {
    left: calc(50% - 681px);
    top: 286px;
    width: 322.192px;
    height: 334.442px;
    background: linear-gradient(135deg, rgba(169, 208, 59, 0.15) 0%, rgba(38, 160, 0, 0.1) 100%);
    clip-path: url(#roundedTriangle);
    transform: rotate(156.629deg);
    animation: floatTriangle1 18s ease-in-out infinite;
}

@keyframes floatTriangle1 {

    0%,
    100% {
        transform: rotate(156.629deg) translate(0, 0);
    }

    25% {
        transform: rotate(166deg) translate(15px, -20px);
    }

    50% {
        transform: rotate(148deg) translate(-10px, 15px);
    }

    75% {
        transform: rotate(162deg) translate(20px, 10px);
    }
}

.hero-triangle-2 {
    left: calc(50% + 341px);
    top: 41px;
    width: 461.052px;
    height: 481.741px;
    background: linear-gradient(135deg, rgba(6, 146, 62, 0.12) 0%, rgba(38, 160, 0, 0.08) 100%);
    clip-path: url(#roundedTriangle);
    transform: rotate(160.006deg);
    animation: floatTriangle2 25s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatTriangle2 {

    0%,
    100% {
        transform: rotate(160.006deg) translate(0, 0);
    }

    30% {
        transform: rotate(172deg) translate(-20px, 15px);
    }

    60% {
        transform: rotate(150deg) translate(15px, -10px);
    }

    90% {
        transform: rotate(168deg) translate(-10px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-family: 'Alata', sans-serif;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    height: 100%;
    padding-top: 30px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.hero-logo img {
    height: 70px;
    width: auto;
}

.hero-text-top {
    position: absolute;
    left: 200px;
    top: 160px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-text-top.animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-subtitle {
    font-size: clamp(28px, 3.5vw, 41px);
    letter-spacing: 2.46px;
    font-weight: 400;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    opacity: 0;
}

.hero-subtitle.typing {
    animation: typeHeroSubtitle 0.9s steps(21) forwards;
}

@keyframes typeHeroSubtitle {
    0% {
        width: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.hero-year-left {
    font-size: clamp(60px, 7vw, 97px);
    letter-spacing: 5.82px;
    font-weight: 400;
    margin-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 1.2;
    text-shadow: 4px 4px 0 #087e4b24,
        4px 4px 0 #087e4b24;
}

.hero-year-left.typing {
    opacity: 1;
}

.hero-arrow {
    position: absolute;
    left: 480px;
    top: 258px;
    width: 314px;
    height: 183px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow img {
    width: 100%;
    height: auto;
    object-fit: contain;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s ease;
}

.hero-arrow.animate img {
    clip-path: inset(0 0 0 0);
}

.hero-text-bottom {
    position: absolute;
    right: 200px;
    top: 258px;
    text-align: right;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-text-bottom.animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-subtitle-right {
    font-size: clamp(28px, 3.5vw, 41px);
    letter-spacing: 2.46px;
    font-weight: 400;
    line-height: 1.2;
}

.hero-subtitle-right p {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    opacity: 0;
}

.hero-subtitle-right p:first-child.typing {
    animation: typeHeroSubtitleRight1 0.7s steps(19) forwards;
}

.hero-subtitle-right p:last-child.typing {
    animation: typeHeroSubtitleRight2 0.6s steps(16) forwards;
}

@keyframes typeHeroSubtitleRight1 {
    0% {
        width: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes typeHeroSubtitleRight2 {
    0% {
        width: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.hero-year-right {
    font-size: clamp(60px, 7vw, 97px);
    letter-spacing: 5.82px;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 4px 4px 0 #087e4b24,
        4px 4px 0 #087e4b24;
}

.hero-year-right.typing {
    opacity: 1;
}

/* ============================================
   Main Content Section
   ============================================ */
.main-content {
    display: flex;
    max-width: 1468px;
    margin: 0 auto;
    width: 100%;
}

/* Sidebar Navigation */
.sidebar {
    width: 332px;
    height: 1024px;
    padding: 48px 24px;
    position: sticky;
    top: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-heading {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.7px;
    line-height: 1.3;
    color: #555555;
    text-align: right;
    padding: 0 0 8px 0;
    margin: 0;
}

.nav-item {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.7px;
    line-height: 1.3;
    color: #bcbcbc;
    text-decoration: none;
    text-align: right;
    padding: 4px 0;
    padding-right: 30px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('images/magicPodIcon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active {
    color: #26a000;
}

.nav-item.active::after {
    opacity: 1;
}

.nav-item:hover {
    color: #06923e;
}

/* Content Area */
.content-area {
    width: 1136px;
    padding: 80px 24px;
    border-radius: 12px;
}

.content-wrapper {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.handwritten-text {
    font-family: 'Gaegu', cursive;
    font-size: 27px;
    letter-spacing: -0.1px;
    font-weight: 400;
    color: #A9D03B;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 3px solid #A9D03B;
    text-align: center;
    margin: 0 auto;
}

.handwritten-text.animate {
    animation: typing 2s steps(27) forwards, blink 0.75s step-end infinite;
    animation-delay: 0s, 0s;
}

@keyframes typing {
    0% {
        width: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
        border-right-color: transparent;
    }
}

@keyframes blink {
    50% {
        border-right-color: transparent;
    }
}

.handwritten-text-2026.animate {
    animation: typing-2026 2.5s steps(40) forwards, blink 0.75s step-end infinite;
    animation-delay: 0s, 0s;
}

@keyframes typing-2026 {
    0% {
        width: 0;
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
        border-right-color: transparent;
    }
}

/* Page Title (h1) */
.page-title {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(-50%);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 1.44px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    z-index: 11;
}

.section-title h2 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 1.2px;
    color: #26a000;
    position: relative;
    padding-bottom: 24px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background:
        radial-gradient(circle, #A9D03B 4px, transparent 4px) 0 center,
        radial-gradient(circle, #A9D03B 4px, transparent 4px) 50% center,
        radial-gradient(circle, #A9D03B 4px, transparent 4px) 100% center;
    background-size: 20px 8px;
    background-repeat: no-repeat;
}


/* Features Content */
.features-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Feature Block */
.feature-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-block.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-block-reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-text h3 {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.84px;
    line-height: 1.6;
    color: #26a000;
}

.feature-text>p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.54px;
    line-height: 1.6;
    color: #555555;
}

.feature-text a {
    color: #008e45;
}

/* Feature Comment (Speech Bubble) */
.feature-comment {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px;
}

.comment-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0E0E0;
    flex-shrink: 0;
    object-fit: cover;
}

.comment-author-name {
    font-size: 12px;
    line-height: 1.3;
    color: #666666;
    font-weight: 600;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.comment-bubble {
    position: relative;
    background-color: #f2f7f3;
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 480px;
}

.comment-bubble::before {
    content: 'Pro Tip';
    color: #26a000;
    position: absolute;
    font-weight: 700;
    left: 20px;
    top: -22px;
    letter-spacing: -0.5px;
    width: 75px;
    height: 0;
    font-size: 25px;
    border-style: solid;
    border-width: 0;
    border-color: initial;
    font-family: 'Gaegu', cursive;
}

.comment-bubble p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.comment-bubble a {
    color: #008e45;
}


.feature-image {
    width: 50%;
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0px 1px 15px 0px rgba(11, 11, 11, 0.15);
}

.feature-image img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Separator Arrow */
.separator-arrow {
    width: 168px;
    height: 222px;
    margin: 0 auto;
    overflow: hidden;
}

.separator-arrow img {
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.8s ease;
}

.separator-arrow-up {
    transform: rotate(180deg) scaleY(-1);
}

.separator-arrow-up img {
    clip-path: inset(0 0 100% 0);
}

/* アニメーション適用後 */
.separator-arrow.animate img {
    clip-path: inset(0 0 0 0);
}

.separator-arrow-up.animate img {
    clip-path: inset(0 0 0 0);
}

/* キーフレームアニメーション */
@keyframes arrowGrow {
    from {
        clip-path: inset(0 0 100% 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Feature: Other */
.feature-block-other {
    display: flex;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-block-other.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-block-other .feature-text {
    flex: 1;
}

.feature-block-other h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.84px;
    line-height: 1.6;
    color: #26a000;
    margin-bottom: 16px;
}

.feature-block-other ul {
    list-style-position: outside;
    padding-left: 24px;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.48px;
    color: #555555;
}

.feature-block-other li {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
}

.feature-block-other li::marker {
    color: #A9D03B;
}

/* Section Title 2026 */
.section-title-2026 {
    margin-top: 0;
}

/* Future Features */
.future-features {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.future-features.animate {
    opacity: 1;
    transform: translateY(0);
}

.future-features ul {
    list-style-position: outside;
    padding-left: 24px;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.48px;
    color: #555555;
}

.future-features li,
.future-features p {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    margin-bottom: 0;
}

.future-features li::marker {
    color: #A9D03B;
}

/* Notice Section */
.notice-section {
    margin-top: 20px;
    padding: 32px 40px;
    background-color: #fff;
    border: 4px solid #DDDDDD;
    border-radius: 8px;
}

.notice-section p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.48px;
    color: #555555;
    margin: 0;
}

.notice-section a {
    color: #008e45;
    padding: 4px 0;
    font-size: 18px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background-color: #A9D03B;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(169, 208, 59, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #06923e;
    box-shadow: 0px 6px 16px rgba(169, 208, 59, 0.5);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    display: block;
}

.back-to-top.scrolling-to-top svg {
    display: none;
}

.back-to-top.scrolling-to-top {
    background-color: transparent;
    background-image: url('images/magicPodIcon.png');
    background-size: 48px 48px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
    animation: spaceship 1.2s ease-in infinite;
}

@keyframes spaceship {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-35px);
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    width: 100%;
    background-color: #fafafa;
    padding: 40px 40px;
    border-radius: 6px;

    a.cta-btn:hover {
        text-decoration: none;
        color: #fff;
    }
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.9px;
    color: #555555;
    text-align: center;
    margin: 0;
}

.cta-btn {
    min-width: 280px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px 15px 40px;
    border-radius: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.18px;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(180deg, #0ba360 0%, #008e45 100%);
    color: #ffffff;
    box-shadow: 0px 2px 8px 0px rgba(11, 163, 96, 0.2);
    padding-right: 65px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px 0px rgba(11, 163, 96, 0.3);
}

.cta-btn .btn-icon {
    position: absolute;
    right: 12px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #009749;
    color: #087e4a;
}

/* ============================================
   Image Modal
   ============================================ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.show {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.image-modal-close:hover {
    color: #A9D03B;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */
@media screen and (max-width: 1299px) {

    /* All vertical layouts - center comment bubbles */
    .feature-comment {
        max-width: 600px;
        margin-left: 0;
        margin-right: auto;
    }

    .comment-bubble {
        max-width: 480px;
    }
}

@media screen and (max-width: 1024px) {

    /* Hero Section - Mobile */
    .hero-section {
        width: 100%;
        height: auto;
        min-height: 400px;
        padding: 40px 20px;
    }

    .hero-background {
        width: 100%;
        height: 100%;
        top: 0;
    }

    .hero-pattern {
        width: 100%;
        height: 100%;
    }

    .hero-gradient {
        width: 150%;
        left: -25%;
        top: -50px;
        transform: none;
    }

    .hero-triangle-1 {
        width: 150px;
        height: 150px;
        left: -30px;
        right: auto;
        top: auto;
        bottom: 50px;
    }

    .hero-triangle-2 {
        width: 200px;
        height: 200px;
        left: auto;
        right: -30px;
        top: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        max-width: none;
        margin: 0;
    }

    .hero-logo {
        position: static;
        transform: none;
        margin-bottom: 30px;
    }

    .hero-logo img {
        height: 60px;
    }

    .hero-text-top {
        position: static;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 20px;
        letter-spacing: 1.2px;
    }

    .hero-year-left {
        font-size: 48px;
        letter-spacing: 2.88px;
    }

    .hero-arrow {
        position: static;
        width: 150px;
        height: 80px;
        margin: 20px auto;
    }

    .hero-arrow img {
        transform: scaleX(-1) rotate(90deg);
    }

    .hero-text-bottom {
        position: static;
        text-align: center;
        margin-top: 30px;
        right: auto;
    }

    .hero-subtitle-right {
        font-size: 20px;
        letter-spacing: 1.2px;
    }

    .hero-year-right {
        font-size: 48px;
        letter-spacing: 2.88px;
    }

    /* Main Content - Mobile */
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }

    /* Content Area - Mobile */
    .content-area {
        width: 100%;
        padding: 40px 20px;
        border-radius: 0;
    }

    .content-wrapper {
        gap: 60px;
    }

    /* Page Title - Mobile */
    .page-title {
        position: static;
        transform: none;
        font-size: 24px;
        letter-spacing: 0.96px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    /* Section Title - Mobile */
    .section-title h2 {
        font-size: 28px;
        letter-spacing: 0.84px;
        text-align: center;
    }

    .handwritten-text {
        font-size: 22px;
    }

    .title-icon {
        width: 12px;
        height: 18px;
    }

    .title-icon::before,
    .title-icon::after {
        width: 6px;
        height: 6px;
    }

    /* Feature Block - Mobile */
    .feature-block,
    .feature-block-reverse {
        flex-direction: column;
        gap: 24px;
        opacity: 0;
        transform: translateY(30px);
    }

    .feature-block.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Ensure consistent order for reverse blocks in vertical layout */
    .feature-block-reverse {
        display: flex;
    }

    .feature-block-reverse .feature-text {
        order: 1;
    }

    .feature-block-reverse .feature-image {
        order: 2;
    }

    .feature-text {
        gap: 16px;
        width: 100%;
    }

    .feature-text h3 {
        font-size: 22px;
        letter-spacing: 0.66px;
    }

    .feature-text>p {
        font-size: 16px;
        letter-spacing: 0.48px;
    }

    .feature-comment {
        gap: 12px;
        margin-top: 16px;
        max-width: 600px;
        margin-left: 0;
        margin-right: auto;
    }

    .comment-author {
        gap: 6px;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
    }

    .comment-author-name {
        font-size: 10px;
    }

    .comment-bubble {
        max-width: 480px;
        padding: 12px 16px;
    }

    .comment-bubble p {
        font-size: 15px;
    }


    .feature-image {
        width: 80%;
        margin: 0 auto;
    }

    /* Separator Arrow - Mobile */
    .separator-arrow {
        width: 80px;
        height: 130px;
        overflow: hidden;
    }

    .separator-arrow img {
        clip-path: inset(0 0 100% 0);
        transition: clip-path 1.8s ease;
    }

    .separator-arrow-up {
        transform: rotate(180deg) scaleY(-1);
    }

    .separator-arrow-up img {
        clip-path: inset(0 0 100% 0);
    }

    .separator-arrow.animate img {
        clip-path: inset(0 0 0 0);
    }

    .separator-arrow-up.animate img {
        clip-path: inset(0 0 0 0);
    }

    /* Feature Other - Mobile */
    .feature-block-other h3 {
        font-size: 22px;
        letter-spacing: 0.66px;
    }

    .feature-block-other ul {
        font-size: 14px;
        letter-spacing: 0.42px;
        padding-left: 20px;
    }

    .feature-block-other li::marker {
        color: #A9D03B;
    }

    /* Future Features - Mobile */
    .future-features ul {
        font-size: 18px;
        letter-spacing: 0.42px;
        padding-left: 20px;
    }

    .future-features li::marker {
        color: #A9D03B;
    }

    /* Notice Section - Mobile */
    .notice-section {
        margin-top: 40px;
        padding: 24px 20px;
    }

    .notice-section p {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Back to Top Button - Mobile */
    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    /* CTA - Mobile */
    .cta-section {
        padding: 40px 20px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .cta-container {
        gap: 24px;
    }

    .cta-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-btn {
        min-width: 100%;
        width: 100%;
        font-size: 17px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1299px) {

    /* Tablet - Column Layout */
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        display: none;
    }

    .content-area {
        width: 100%;
    }

    /* Feature blocks in consistent order */
    .feature-block,
    .feature-block-reverse {
        flex-direction: column;
        align-items: center;
    }

    /* Ensure consistent order for reverse blocks in vertical layout */
    .feature-block-reverse {
        display: flex;
    }

    .feature-block-reverse .feature-text {
        order: 1;
    }

    .feature-block-reverse .feature-image {
        order: 2;
    }

    /* Comment bubbles centered */
    .feature-comment {
        max-width: 600px;
        margin-left: 0;
        margin-right: auto;
    }

    .comment-bubble {
        max-width: 480px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {

    /* Tablet / Smaller Desktop */
    .hero-section {
        width: 100%;
    }

    /* Hero adjustments for smaller screens */
    .hero-logo img {
        height: 60px;
    }

    .hero-text-top {
        left: 150px;
    }

    .hero-arrow {
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 146px;
    }

    .hero-text-bottom {
        right: 150px;
    }

    /* Hero decorative elements - Tablet */
    .hero-triangle-1 {
        left: calc(50% - 400px);
        top: 200px;
        width: 280px;
        height: 290px;
    }

    .hero-triangle-2 {
        left: calc(50% + 120px);
        top: 30px;
        width: 380px;
        height: 395px;
    }

    /* CTA - Tablet */
    .cta-section {
        width: 100%;
    }
}

@media screen and (min-width: 1441px) {

    /* Desktop - Original positions for decorative elements */
    .hero-triangle-1 {
        left: calc(50% - 681px);
        top: 286px;
        width: 322.192px;
        height: 334.442px;
    }

    .hero-triangle-2 {
        left: calc(50% + 341px);
        top: 41px;
        width: 461.052px;
        height: 481.741px;
    }
}

@media screen and (min-width: 1300px) {

    /* Desktop - Row Layout */
    .main-content {
        flex-direction: row;
    }

    .content-area {
        width: calc(100% - 332px);
    }
}