:root {
    /* Colors */
    --color-primary: #0052CC;
    --color-accent: #FF4F4F;
    --color-cta: #FF6733;
    --color-text-main: #333333;
    --color-text-light: #666666;
    --color-bg-body: #FFFFFF;
    --color-bg-blue-light: #F0F5FF;
    --color-check-blue: #4DA3FF;

    /* Typography */
    --font-family-base: "Noto Sans JP", sans-serif;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 60px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text-main);
    line-height: 1.6;
    padding-top: 70px; /* Space for fixed header */
}

/* Offset for fixed header when using anchor links */
section[id] {
    scroll-margin-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 1000;
}
.header__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo-link {
    display: block;
}
.header__logo-img {
    height: 47px; /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

/* Hover Animations */
.u-hover-opacity {
    transition: opacity 0.3s ease;
}
.u-hover-opacity:hover {
    opacity: 0.7;
}

.u-hover-sink {
    transition: transform 0.2s ease;
    display: inline-block;
}
.u-hover-sink:hover {
    transform: translateY(2px);
}

/* Apply hover effects generally */
a:not(.header__logo-link):not(.footer__logo-link),
button,
.header__cta,
.hero__btn,
.contact__submit-btn,
.footer__link {
    transition: all 0.3s ease;
}

a:not(.header__logo-link):not(.footer__logo-link):hover,
.footer__link:hover {
    opacity: 0.7;
}

.header__cta:hover,
.hero__btn:hover,
.contact__submit-btn:hover {
    transform: translateY(2px);
    opacity: 0.9;
}
.header__nav {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    align-items: center; /* Ensure vertical alignment */
}
.header__link,
.header__cta {
    line-height: 1; /* Normalize line height */
}
.header__cta {
    background: #FF6733;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
}
/* Hamburger Button (Desktop Hidden) */
.header__hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) { top: 0; }
.header__hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__hamburger span:nth-child(3) { bottom: 0; }

/* Hamburger Active State */
.header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Section Common Container */
.hero__container,
.concerns__container,
.solution__container,
.reasons__container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 1: Hero (Node 56-36) */
.hero {
    padding: 110px 0 50px 0;
    background-color: #fff;
    overflow: hidden; /* Prevent image overflow if needed */
}

.hero__container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero__content {
    flex: 1;
    max-width: 540px; /* Reduced to force similar text wrapping */
}

.hero__subtitle {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 16px; /* Slightly smaller to match image */
    margin-bottom: 20px;
    display: inline-block;
}

.hero__title {
    color: var(--color-primary);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__tax {
    font-size: 0.6em;
    font-weight: normal;
    margin-left: 4px;
}

.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 32px;
}

.hero__cta-wrapper {
    margin-top: 0;
}

.hero__btn {
    background-color: var(--color-cta);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 103, 51, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 103, 51, 0.4);
}

.hero__media {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Align image to right */
    position: relative;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 600px; /* Prevent it from being too huge */
}



.hero__image-placeholder {
    width: 100%;
    /* height: 400px; Removed fixed height to fit content if changed */
    min-height: 400px;
    background: #ddeeff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border-radius: 12px;
    overflow: hidden;
}

/* Section 2: Concerns (Node 56-50) */
.concerns {
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.concerns__container {
    background-color: #F7F7F7; /* Light gray background to match Figma */
    border-radius: 50px; /* Adjusted radius */
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative; /* For speech bubble tail */
    max-width: 1100px;
    width: 100%;
}

/* Speech bubble tail */
.concerns__container::after {
    content: "";
    position: absolute;
    bottom: -30px; /* Position below */
    left: 50%;
    transform: translateX(-50%);
    border-width: 30px 30px 0;
    border-style: solid;
    border-color: #F7F7F7 transparent transparent transparent;
}

.concerns__content {
    flex: 1;
}

.concerns__title {
    font-size: 32px; /* Adjusted from 40px to fit better */
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

.concerns__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.concerns__item {
    display: flex;
    align-items: flex-start; /* Align to top for multi-line text */
    gap: 12px;
}

.concerns__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-check-blue);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px; /* Align with first line of text */
}

.concerns__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-main);
}

.u-highlight {
    color: var(--color-primary);
    font-weight: 500;
}

.u-highlight-bold {
    color: var(--color-primary);
    font-weight: 700;
}

.concerns__media {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.concerns__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Section 3: Solution (Node 56-80) */
.solution {
    padding: 100px 0;
    background-color: #E6F2FF;
}

.solution__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.solution__title-box {
    background-color: #0057C9;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding: 12px 16px;
    line-height: 1;
}

.solution__title-text {
    font-size: 40px;
    font-weight: 700;
    color: #333;
}

.solution__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution__media {
    flex: 0 0 450px;
}

.solution__image {
    width: 100%;
    height: auto;
}

.solution__text {
    flex: 1;
    text-align: left;
}

.solution__subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-bottom: 24px;
}

.solution__description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}



/* Utility classes */
.u-primary {
    color: var(--color-primary);
}
.u-small {
    font-size: 0.75em;
    font-weight: 400;
}

/* Section 4: Reasons (Node 56-93) */
.reasons {
    padding: 100px 0 50px 0;
    background-color: #F7F7F7;
}

.reasons__title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.6;
    color: var(--color-text-main);
}

.reasons__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reasons__card {
    background-color: #fff;
    border-radius: 15px;
    padding: 45px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.reasons__card--reverse {
    flex-direction: row-reverse;
}

.reasons__media {
    flex: 0 0 400px;
}

.reasons__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.reasons__content {
    flex: 1;
}

.reasons__title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.reasons__badge {
    background-color: var(--color-primary);
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 56px;
    border-radius: 4px;
    flex-shrink: 0;
}

.reasons__badge-pt {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.reasons__badge-num {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.reasons__subtitle {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333333;
}

.reasons__subtitle {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
}

.reasons__description {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
}





/* Section 7: Flow (Node 56-166) */
.flow {
    padding: 100px 0;
    background-color: #F7F7F7;
}

.flow__header {
    text-align: center;
    margin-bottom: 60px;
}

.flow__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-main);
}

.flow__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flow__card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.flow__badge {
    background-color: var(--color-primary);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.flow__badge-step {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.flow__badge-num {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.flow__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
}

.flow__card-media {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.flow__card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.flow__card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 1024px) {
    .flow__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .flow {
        padding: 60px 0;
    }
    .flow__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .flow__card {
        padding: 40px 20px;
    }
}

/* Section 8: FAQ (Node 56-208) */
.faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__header {
    text-align: center;
    margin-bottom: 60px;
}

.faq__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-main);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background-color: #F7F7F7;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item[open] {
    background-color: #fff;
    border-color: var(--color-primary);
}

.faq__question {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Arrow */
.faq__question::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #99A1AF;
    border-bottom: 2px solid #99A1AF;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 4px;
}

.faq__item[open] .faq__question::after {
    transform: rotate(-135deg);
}

/* Remove default summary arrow in Chrome/Safari */
.faq__question::-webkit-details-marker {
    display: none;
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    .faq__title {
        font-size: 26px;
    }
    .faq__question {
        padding: 15px 20px;
        font-size: 14px;
    }
    .faq__answer {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}

/* Footer (Node 56-232) */
.footer {
    padding: 200px 40px;
    background-color: #DEEEFF;
    text-align: center;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__logo {
    margin-bottom: 60px;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    margin: 0 auto;
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.footer__link {
    font-size: 12px;
    font-weight: 500;
    color: #848484;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--color-primary);
}

.footer__copyright {
    font-size: 12px;
    color: #666;
}

/* Section 5: Difference (Node 56-132) */
.difference {
    padding: 130px 0 100px; /* Room for pop-out header */
    background-color: #F7F7F7;
}

.difference__header {
    text-align: center;
    margin-bottom: 60px;
}

.difference__scroll-hint {
    display: none;
}

.difference__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-main);
}

.difference__table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    /* Removed background and radius from wrapper, as columns handle it now */
    border-radius: 12px; 
    padding-top: 40px; /* Space for pop-up */
}

/* New Grid Layout */
.difference__grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensure same height */
    width: 100%;
    min-width: 600px; /* Ensure layout integrity */
}

.difference__col {
    display: flex;
    flex-direction: column;
}

.difference__cell {
    height: 80px; /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding: 0 10px;
    font-size: 16px;
    text-align: center;
    background-color: #fff;
}

.difference__cell:last-child {
    border-bottom: none;
}
/* Header Cells - Height adjustments */
.difference__cell--header {
    height: 80px;
    font-weight: 700;
    color: #333;
    font-size: 18px;
    background-color: transparent; /* Top cells transparent by default */
    border-bottom: 1px solid #eee;
}

/* Left Column: Labels */
.difference__col--labels {
    width: 25%;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden; /* For radius */
}
.difference__col--labels .difference__cell {
    background-color: #EBF4FF; /* Light Blue BG */
    font-weight: 700;
    color: #333;
}
.difference__col--labels .difference__cell--header {
    background-color: transparent !important; /* Top-left Empty */
    border-bottom: none;
}

/* Right Column: Common */
.difference__col--common {
    width: 37.5%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}
.difference__col--common .difference__cell--header {
    background-color: #E0E0E0; /* Gray Header */
}
/* Ensure data cells are white */
.difference__col--common .difference__cell:not(.difference__cell--header) {
    background-color: #fff;
}

/* Center Column: Marutto Card */
.difference__col--marutto {
    width: 37.5%;
    background-color: #fff;
    border: 4px solid #FF6363; /* The solid red border */
    border-radius: 20px;
    position: relative;
    z-index: 10;
    margin-top: -30px; /* Pop out effect */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.difference__col--marutto .difference__cell {
    border-bottom: 1px solid #eee;
}
.difference__col--marutto .difference__cell:last-child {
    border-bottom: none;
}

/* Specific styling for Marutto Header */
.difference__col--marutto .difference__cell--header {
    height: 110px; /* Taller header */
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid #eee;
}

.difference__col--marutto .difference__cell--highlight {
    color: #FF6363;
    font-weight: 700;
    font-size: 20px;
    background-color: #FFF9F9; /* Slight pink tint */
}

/* Logo in header */
.difference__brand .header__logo-img {
    height: 38px;
    width: auto;
}

/* Section 6: Cheapness (Node 56-138) */
.cheapness {
    padding: 100px 0;
    background-color: #fff;
}

.cheapness__header {
    text-align: center;
    margin-bottom: 60px;
}

.cheapness__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text-main);
}

.cheapness__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cheapness__card {
    display: flex;
    flex-direction: column;
}

.cheapness__card-top {
    border: 3px solid #4DA3FF;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 340px; /* Aligns the top parts across cards */
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #F7F7F7;
}

.contact__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__header {
    text-align: center;
    margin-bottom: 60px;
}

.contact__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.contact__subtitle {
    font-size: 16px;
    color: #666;
}

.contact__form {
    background-color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact__form-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__form-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
}

.contact__badge-required {
    background-color: #FF4F4F;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.contact__error-text {
    color: #FF4F4F;
    font-size: 13px;
    font-weight: 700;
    margin-top: 5px;
    display: none; /* Hidden by default */
}

.contact__input.is-error,
.contact__textarea.is-error {
    border-color: #FF4F4F;
    background-color: #FFF5F5;
}

.contact__input,
.contact__textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.1);
}

.contact__textarea {
    min-height: 150px;
    resize: vertical;
}

.contact__form-submit {
    margin-top: 50px;
    text-align: center;
}

.contact__submit-btn {
    appearance: none;
    border: none;
    background-color: var(--color-cta);
    color: #fff;
    padding: 20px 80px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.contact__submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.3);
    background-color: #ff9100;
}

.contact__success {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    display: none; /* Initially hidden */
}

.contact__success-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.contact__success-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-main);
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    .contact__form {
        padding: 30px 20px;
    }
    .contact__form-row {
        grid-template-columns: 1fr;
    }
    .contact__submit-btn {
        width: 100%;
        padding: 18px 20px;
    }
    .contact__success {
        padding: 40px 20px;
    }
    .contact__success-title {
        font-size: 20px;
    }
    .contact__success-text {
        font-size: 14px;
    }
}
.cheapness__card-header {
    background-color:#4DA3FF;
    padding: 20px;
    text-align: center;
}

.cheapness__card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.cheapness__card-media {
    padding: 10px 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* Take up remaining space in .cheapness__card-top */
    overflow: hidden;
}

.cheapness__card-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cheapness__card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-main);
}

@media (max-width: 992px) {
    .cheapness__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 50px;
    }
    .cheapness__card-top {
        height: auto;
    }
}


/* Policy Pages */
.policy {
    padding: 60px 0 100px;
    background: #fff;
    min-height: 80vh;
}
.policy__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.policy__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}
.policy__section {
    margin-bottom: 50px;
}
.policy__subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    color: var(--color-primary);
}
.policy__text {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #444;
}
.policy__list {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
    color: #444;
}
.policy__list li {
    margin-bottom: 10px;
}
.policy__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.policy__table th,
.policy__table td {
    padding: 18px;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 15px;
}
.policy__table th {
    background: #f9f9f9;
    width: 30%;
    font-weight: 700;
    color: #333;
}
@media (max-width: 768px) {
    .policy__title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    .policy__table th,
    .policy__table td {
        display: block;
        width: 100%;
    }
    .policy__table th {
        background: #f0f5ff;
    }
}


/* Tablet Responsive (800px - 1279px) */
@media (max-width: 1279px) {
    .hero {
        padding: 120px 0 0 0;
    }

    .hero__container {
        flex-direction: column;
        gap: 50px;
        max-width: 800px;
    }

    .hero__content {
        max-width: 100%;
        order: 2;
    }

    .hero__media {
        max-width: 100%;
        order: 1;
        justify-content: center;
        padding: 0 100px;
    }

    .hero__title {
        font-size: 38px;
    }

    .hero__description {
        font-size: 18px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Concerns Section Tablet */
    .concerns {
        padding-top: 80px;
    }
    .concerns__container {
        flex-direction: column;
        padding: 80px 90px;
        gap: 40px;
        max-width: 600px;
        border-radius: 90px;
    }

    .concerns__image{
        max-width: 70%;
    }

    .concerns__container::after {
        border-width: 86px 88.5px 0;
        bottom: -86px;
    }

    .concerns__media {
        flex: none;
        width: 100%;
        max-width: 440px;
        order: 1;
    }

    .concerns__content {
        order: 2;
        width: 100%;
    }

    .concerns__title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 28px;
    }

    .concerns__list {
        gap: 18px;
        width: fit-content;
        margin: 0 auto;
    }

    /* Solution Section Tablet */
    .solution {
        padding: 70px 0;
    }

    .solution__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        max-width: 600px;
        padding: 0 20px;
    }

    .solution__image{
        max-width: 80%;
        margin: 0 auto;
    }

    .solution__header {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
        justify-content: flex-start;
        width: 100%;
        max-width: 640px; /* Align with text max-width */
    }

    .solution__title-box {
        font-size: 30px;
        padding: 12px;
    }

    .solution__title-text {
        font-size: 30px;
    }

    .solution__content {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        align-items: center;
    }

    .solution__media {
        flex: none;
        width: 100%;
        max-width: 460px;
        padding: 0;
    }

    .solution__text {
        text-align: left;
        width: 100%;
        max-width: 640px;
    }

    .solution__subtitle {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: left;
    }

    .solution__description {
        text-align: left;
    }

    /* Reasons Section Tablet */
    .reasons {
        padding: 100px 0 60px 0;
    }

    .reasons__list {
    gap: 10px;
}

    .reasons__container {
        max-width: 600px;
    }

    .reasons__title {
        font-size: 30px;
        margin-bottom: 49px;
    }

    .reasons__card, .reasons__card--reverse {
        flex-direction: column;
        padding: 45px 40px;
        gap: 30px;
        text-align: left;
        margin-bottom: 30px;
    }

    .reasons__media {
        flex: none;
        width: 100%;
        max-width: 400px; /* Reduced max-width for tighter layout */
        margin: 0 auto;
    }

    .reasons__content {
        width: 100%;
    }

    .reasons__title-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 0px;
    }

    .reasons__subtitle {
        font-size: 24px;
        line-height: 1.4;
    }

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

    /* Difference Section Tablet */
    .difference {
        padding: 50px 0;
    }

    .difference__header {
        margin-bottom: 70px;
    }

    .difference__title {
        font-size: 30px;
    }

    .difference__table-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Difference Grid Tablet Adjustments */
    .difference__cell {
        font-size: 14px;
        height: 70px;
    }
    .difference__cell--header {
        height: 70px;
        font-size: 16px;
    }
    .difference__col--marutto .difference__cell--header {
        height: 100px;
    }
    .difference__col--marutto .difference__cell--highlight {
        font-size: 16px;
    }


    /* Cheapness Section Tablet */
    .cheapness {
        padding: 80px 0;
    }

    .cheapness__title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .cheapness__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 50px;
        padding: 0 40px;
    }

    .cheapness__card-img {
        width: 60%;
        margin: 0 auto;
    }

    /* Flow Section Tablet */
    .flow {
        padding: 80px 0;
    }

    .flow__title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .flow__grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        gap: 30px;
        padding: 0 40px;
    }

    .flow__card {
        padding: 30px;
    }

    .flow__card-img {
        width: 60%;
        height: auto;
    }

    /* FAQ Section Tablet */
    .faq {
        padding: 80px 0;
    }

    .faq__header {
        margin-bottom: 48px;
    }

    .faq__title {
        font-size: 30px;
    }

    .faq__container {
        padding: 0 40px;
        max-width: 800px;
    }

    /* Contact Section Tablet */
    .contact {
        padding: 80px 0;
    }

    .contact__container{
        max-width: 750px;
    }

    .contact__form {
        padding: 40px;
        margin: 0 40px;
    }

    /* Footer Section Tablet */
    .footer {
        padding: 170px 40px;
    }

    .footer__logo {
        margin-bottom: 40px;
    }

    .footer__nav {
        gap: 35px;
    }

    /* Header Tablet (Hamburger Logic) */
    .header {
        padding: 15px 0;
    }
    .header__container {
        padding: 0 40px;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center; /* Fix vertical alignment */
    }
    
    .header__hamburger {
        display: none;
    }



    .header__link {
        font-size: 18px;
    }

    .header__cta {
        width: auto;
        font-size: 18px;
        padding: 15px 40px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Common container padding for mobile */
    .hero__container,
    .concerns__container,
    .solution__container,
    .reasons__container,
    .difference__container,
    .cheapness__container,
    .flow__container,
    .faq__container,
    .contact__container,
    .footer__container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    /* Reset header container for mobile to keep row layout for logo/hamburger */
    .header__container {
        flex-direction: row;
        gap: 0;
        padding: 0 25px;
        justify-content: center;
    }
    
    .header__logo-img {
        height: 38px;
    }
    
    .header__nav {
        display: none;
    }

    .hero {
        padding: 30px 0 60px 0;
    }

    .hero__container {
        flex-direction: column;
        padding: 0 25px;
        gap: 40px;
    }

    .hero__title {
        font-size: 28px;
    }
    
    .hero__description {
        font-size: 16px;
    }
    
    .hero__btn {
        width: 100%;
        display: block;
        text-align: center;
    }
    
    .hero__media {
        justify-content: center;
        width: 100%;
        margin-top: 30px;
        padding: 0;
    }
    
    .u-desktop-only {
        display: none;
    }

    .concerns{
        padding: 0 25px 40px 25px;
    }

    .concerns__container {
        flex-direction: column;
        padding: 40px 25px;
        border-radius: 40px;
        gap: 30px;
    }
    
    .concerns__container::after {
        border-width: 40px 40px 0;
        bottom: -40px;
    }

    .concerns__title, .reasons__title, .difference__title, .cheapness__title, .flow__title, .faq__title, .contact__title {
        font-size: 26px;
        text-align: center;
    }

    .concerns__media {
        width: 100%;
    }
    
    .concerns__list {
        gap: 16px;
        width: fit-content;
        margin: 0 auto;
    }
    
    .concerns__item {
        gap: 8px;
    }
    
    .concerns__text {
        font-size: 15px;
    }
    
    /* Solution Mobile */
    .solution {
        padding: 60px 0;
    }

    .solution__content{
        gap:40px;
    }
    
    .solution__header {
        align-items: flex-start;
        gap: 5px;
    }
    
    .solution__title-box {
        font-size: 24px;
    }
    
    .solution__title-text {
        font-size: 24px;
    }
    
    .solution__subtitle {
        font-size: 22px;
    }

    /* Reasons Mobile */
    .reasons {
        padding: 60px 0 20px 0;
    }
    
    .reasons__card {
        padding: 35px 20px;
        gap: 35px;
    }
    
    .reasons__subtitle {
        font-size: 22px;
    }
    
    .reasons__ref-img, .difference__ref-img, .cheapness__ref-img {
        border-radius: 10px;
    }

    /* Difference table mobile adjustments */
    .difference {
        padding: 40px 0;
    }
    
    .difference__header {
        margin-bottom: 40px;
    }
    
    .difference__table-wrapper {
        margin: 0;
        overflow-x: auto;
        padding-top: 30px; /* Maintain space for pop-out */
        align-items: flex-start;
    }
    .difference__grid {
         min-width: 400px;
         padding-bottom: 15px;
    }
    
    .difference__col--labels {
        width: 70px;
        flex: none;
    }

    .difference__col--marutto,
    .difference__col--common {
        flex: 1;
    }

    .difference__cell {
        font-size: 11px;
        padding: 0 2px;
        height: 54px;
        line-height: 1.2;
    }
    .difference__cell--header {
        font-size: 12px;
        height: 54px;
        padding: 0 4px;
    }
    
    .difference__col--marutto .difference__cell--header {
        height: 80px;
    }

    .difference__brand .header__logo-img {
        height: 20px;
    }
    
    .difference__scroll-hint {
        display: block;
        text-align: left;
        font-size: 12px;
        color: #FF6733;
        font-weight: 700;
        margin-bottom: 8px;
        padding-left: 10px;
    }
    
    /* Cheapness Mobile */
    .cheapness {
        padding: 60px 0;
    }

     .cheapness__card-img {
        width: 80%;
        margin: 0 auto;
    }
    
    .cheapness__grid {
        gap: 40px;
        padding: 0;
    }
    
    .cheapness__card-title {
        font-size: 18px;
    }

    .cheapness__card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Flow Mobile */
    .flow {
        padding: 60px 0;
    }
    
    .flow__grid {
        padding: 0;
        gap: 24px;
    }
    
    .flow__card {
        padding: 24px;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq__container {
        padding: 0 25px;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }
    .contact__form {
        padding: 30px 25px;
        margin: 0;
    }
    .contact__form-row {
        grid-template-columns: 1fr;
    }
    .contact__submit-btn {
        width: 100%;
        padding: 18px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 130px 20px 184px 20px;
    }
    .footer__logo {
        margin-bottom: 40px;
    }
    .footer__logo-img {
        height: 45px;
    }
    .footer__nav {
        gap: 15px;
        flex-direction: column;
    }
}

/* Fixed Bottom CTA (Mobile Only) */
.fixed-cta {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 100px; /* Adjusted for actual CTA height */
    }
    
    .fixed-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #f2f2f285;
        padding: 10px 40px;
        z-index: 999;
        box-shadow:0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .fixed-cta__message {
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: #ff0000; /* Primary blue */
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
    
    .fixed-cta__button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px; /* Icon to text gap */
        width: 295px; /* Fixed width */
        background: #FF6733;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        padding: 17px 0; /* Vertical padding only */
        border-radius: 40px;
        box-shadow: 0 4px 15px rgba(255, 103, 51, 0.3);
        transition: transform 0.2s ease;
        line-height: 1.45;
        letter-spacing: -0.005em;
    }
    
    .fixed-cta__button:active {
        transform: scale(0.98);
    }
    
    .fixed-cta__icon {
        width: 25px;
        height: 24px;
        object-fit: contain;
    }
}
