/* Landing Page - New Design Styles */

/* Global Font Family for Landing Page */
body,
html {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Yu Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', Meiryo, 'MS PGothic', sans-serif;
}

/* Fixed CTA Button */
.fixed-cta-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeInDown 0.5s ease-out;
}

.fixed-cta-button .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    transition: all 0.3s;
}

.fixed-cta-button .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .fixed-cta-button {
        top: 10px;
        right: 10px;
    }
    
    .fixed-cta-button .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Hero Slider Section */
.hero-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 600px;
    background: #fff;
    padding: 80px 0 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-swiper-container {
    width: 50%;
    position: relative;
}

.hero-slide-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
}

.hero-slide-right .hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-slide-left {
    text-align: left;
    width: 100%;
}

.hero-swiper-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-slide-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: contain;
}

.hero-badge {
    display: inline-block;
    background: #1a2b4a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    margin-bottom: 30px;
}

.text-blue {
    color: #0066cc;
}

.text-line {
    color: #00C300;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta {
    text-align: left;
    margin-top: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-left: 10px;
    display: block;
}

.hero-cta .btn-primary {
    font-size: 1.1rem;
    padding: 15px 40px;
    background-color: #1A2B4A;
    border-radius: 9999px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 20px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #0066cc;
    opacity: 0.3;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    background: #ebebeb;
    padding: 0 0 6.5rem 0;
}

.problems-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: black;
    margin-bottom: 60px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    padding: 4rem 1.5rem 3rem;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card-1 {
    background-image: url('../images/lp/image1.png');
}

.problem-card-2 {
    background-image: url('../images/lp/image2.png');
}

.problem-card-3 {
    background-image: url('../images/lp/image3.png');
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.problem-icon {
    width: 1.8rem;
    height: 1.8rem;
    background: rgb(255 255 255 / 0%);
    border-radius: 50%;
    border-color: #fff;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.problem-title {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.problem-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problems-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .problems-section {
        padding: 60px 0;
    }
    
    .problem-card {
        padding: 30px 20px;
    }
}

/* Feature Sections */
.feature-section {
    /* padding: 100px 0; */
    background: #fff;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width : 100%;
}

.feature-content.reverse {
    /* flex-direction: row-reverse; */
}

.feature-visual {
    /* flex: 1; */
    width: 50%;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

/* Tech Tools Hexagonal Grid */
.tech-tools-hex-container {
    width: 100%;
    padding: 20px;
}

.tech-tools-hex-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
}

.tech-tools-hex-subtitle {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
}

.tech-tools-hex-grid {
    display: grid;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background-color: #ffe9b4;
    padding: 1.3rem 0.8rem;
    border-radius: 1.2rem;
    padding-bottom: 0;
    height: 31.5rem;
}

.tech-tools-hex-grid::after {
    content: '';
    grid-column: 1 / -1;
    height: 0;
}

.tech-tools-hex-item {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-tools-hex-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-tools-hex-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-tools-hex-icon svg {
    width: 100%;
    height: 100%;
}

.tech-tools-hex-item-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
}

.tech-tools-hex-item-desc {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    overflow-wrap: break-word;
    word-break: break-word;
}

.tech-tools-hex-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.tech-tools-hex-btn {
    background: #555;
    color: #fff;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 20px;
    /* background: #f5f5f5; */
    width: 100%;
    height: 100%;
    align-items: center;
}

.feature-image-wrapper.dashboard {
    background: #fafafa;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-image-wrapper.phone {
    background: #faf5f0;
    padding: 20px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem;
}

.feature-text {
    /* flex: 1; */
    position: relative;
    width: 50%;
}

.feature-badge {
    display: inline-block;
    background: #1a2b4a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.feature-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #00C300;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.feature-list.yellow-bullets {
    list-style: none;
    padding-left: 0;
}

.feature-list.yellow-bullets li {
    position: relative;
    padding-left: 25px;
}

.feature-list.yellow-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFA500;
    font-size: 1.5rem;
    line-height: 1;
}

/* Features Intro Section */
.features-intro-section {
    padding: 5.5rem 0 5.1rem;
    background: #fff;
    text-align: center;
}

.features-intro-section .section-title {
    font-size: 1.6rem;
    color: #0066cc;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
}

@media (max-width: 768px) {
    .features-intro-section {
        padding: 3rem 0 2rem !important;
    }

    .features-intro-section .section-title {
        font-size: 1.3rem !important;
        padding: 0 20px;
        line-height: 1.5;
    }
}

/* Tools Detail Section */
.tools-detail-section {
    padding: 100px 0;
    background: #fafafa;
}

.tools-detail-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.tools-detail-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tool Cards with Banner Layout */
.tool-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.tech-tool-content {
    display: flex;
    flex-direction: column;
}

.tech-tool-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tech-tool-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tech-tool-info {
    padding: 22px 24px 24px;
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.tool-tag.tag-purple {
    background: #8B5CF6;
}

.tool-tag.tag-blue {
    background: #0066cc;
}

.tool-tag.tag-green {
    background: #00C300;
}

.tool-description {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.tool-link:hover {
    color: #0052a3;
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
    background: #fff;
}

.steps-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 20px;
}

.step-card {
    flex: 1;
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-number-bg {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 6rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    z-index: 0;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: #1a2b4a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-icon-box img,
.step-icon-box .step-icon-emoji {
    width: 50px;
    height: 50px;
    object-fit: contain;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.step-arrow {
    position: absolute;
    bottom: 40%;
    right: -15px;
    font-size: 2rem;
    color: #FFA500;
    font-weight: bold;
}

.steps-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Note */
.feature-note {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.8;
    margin-top: 0.7rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.testimonials-grid:last-child {
    margin-bottom: 0;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.testimonial-bullet {
    font-size: 1.5rem;
    color: #333;
}

.testimonial-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 700;
    color: #FFA500;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    justify-content: left;
    gap: 20px;
    align-items: center;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.verify-icon {
    width: 30px;
    height: 30px;
    background: #00C300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Two Column Section */
.testimonials-two-column-section {
    padding: 6.25rem 0;
    background: #ebebeb;
}

.testimonials-two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials-column-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
}

.testimonials-column-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.testimonial-block {
    background: #fff;
    padding: 0.9rem 1.3rem;
    padding-top: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    height: 200px;
    flex-direction: column;
}

.testimonial-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-portrait {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
}

.testimonial-portrait-image {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-english-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 0.05em;
}

.testimonial-japanese-text {
    font-size: 0.8rem;;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* New User Pricing Section */
.lp-new-pricing-section {
    padding: 3.4rem 0 1.25rem 0;
    position: relative;
    background-image: url('../../assets/images/lp/image6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lp-new-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
}

.lp-new-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #333 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
    letter-spacing: -0.02em;
}

.lp-new-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-break: break-word;
    font-weight: 500;
}

.lp-new-content-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
}

.lp-new-benefits {
    width: 25rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px;
    border-radius: 20px;
    height: 36rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-new-benefits:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lp-new-benefits-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2.75rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #0066cc 0%, #0052a3 100%) 1;
}

.lp-new-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.lp-new-benefit-item {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.85;
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: color 0.2s ease;
}

.lp-new-benefit-item:hover {
    color: #0066cc;
}

.lp-new-benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-new-pricing-card {
    width: 25rem;
    background: linear-gradient(180deg, #4c1d95 0%, #7c3aed 50%, #a78bfa 100%);
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 36rem;
    display: flex;
    flex-direction: column;
}

.lp-new-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.4), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.lp-new-pricing-content {
    display: flex;
    flex-direction: column;
    padding: 40px 35px 35px;
    gap: 1.5rem;
    position: relative;
    flex: 1;
}

/* Popular Badge */
.lp-new-popular-badge {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

/* Plan Title */
.lp-new-plan-title {
    font-size: 1.2rem;
    /* font-weight: 800; */
    color: #ffffff;
    text-align: center;
    margin: 0.6rem;
    /* letter-spacing: -0.02em; */
    line-height: 1.3;
}

/* Main Price Display */
.lp-new-main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.5rem;
    margin-top: 4.15rem;
}

.lp-new-price-symbol {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.lp-new-price-number {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.05em;
}

.lp-new-price-period {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1;
}

/* Initial Fee Note */
.lp-new-initial-fee-note {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0 0 4.3rem;
    font-weight: 500;
}

/* Features List */
.lp-new-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-new-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.lp-new-feature-check {
    color: #fbbf24;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.4;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-new-feature-text {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
    margin-bottom: 4rem;
}

/* CTA Button */
.lp-new-inquire-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.lp-new-inquire-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Disclaimer Note */
.lp-new-disclaimer-note {
    color: #ffffff;
    font-size: 0.9rem;
    /* margin-top: 1rem; */
    padding-top: 1rem;
    /* border-top: 2px dashed #000; */
    text-align: center;
}

.lp-new-price-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-new-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.lp-new-price-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.lp-new-price-badge {
    font-size: 0.75rem;
    color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lp-new-price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.lp-new-price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.lp-new-price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    margin-left: 2px;
}

.lp-new-price-tax {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 8px;
}

.lp-new-price-tax-included {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 82, 163, 0.05) 100%);
    border-radius: 8px;
    border-left: 3px solid #0066cc;
    margin-top: 4px;
}

.lp-new-tax-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.lp-new-tax-amount {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 700;
}

.lp-new-price-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
    margin: 8px 0;
    border: none;
}

.lp-new-payment-methods {
    padding-top: 20px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, rgba(0, 102, 204, 0.2), transparent) 1;
}

.lp-new-payment-title {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.lp-new-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-new-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 82, 163, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.15);
    transition: all 0.2s ease;
}

.lp-new-payment-option:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.1) 100%);
    border-color: rgba(0, 102, 204, 0.3);
    transform: translateX(4px);
}

.lp-new-payment-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.lp-new-payment-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.5;
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lp-new-disclaimer-wrapper {
    margin-top: 8px;
}

.lp-new-disclaimer {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 82, 163, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.15);
    text-align: center;
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lp-new-cta-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-new-cta-button {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lp-new-cta-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Concept Bridge Section */
.lp-bridge-section {
    padding: 8.37rem 0 5.37rem 0;
    background: transparent;
    text-align: center;
}

.lp-bridge-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-break: break-word;
    letter-spacing: -0.02em;
}

/* Final CTA Section */
.final-cta-section {
    padding: 0 0 6.25rem 0;
    background: #fff;
}

.cta-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-inline: 20px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
    justify-content: center;
    align-items: center;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    /* margin-top: 25px; */
    text-align: center;
}

.cta-description {
    font-size: 1rem;
    color: #111827;
    line-height: 1.8;
    /* margin-bottom: 40px; */
    text-align: center;
}

/* Placeholder Styles */
.line-feature {
    /* background: linear-gradient(135deg, #00C300 0%, #00E600 100%); */
    min-height: 500px;
    align-items: center;
}

.line-placeholder {
    text-align: center;
    color: #fff;
    padding-block: 10px;
}

.line-logo {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.line-logo img {
    width: 50%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-placeholder::before,
.qr-placeholder::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #00C300;
}

.qr-placeholder::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.qr-placeholder::after {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.dashboard-placeholder {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.dashboard-header {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-card {
    height: 80px;
    background: #f5f5f5;
    border-radius: 8px;
}

.dashboard-chart {
    height: 150px;
    background: #f5f5f5;
    border-radius: 8px;
}

.phone-placeholder {
    background: #faf5f0;
    padding: 20px;
    border-radius: 20px;
}

.phone-screen {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    min-height: 500px;
}

.phone-header {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.phone-card-preview {
    width: 100%;
    height: 200px;
    background: #e3f2fd;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.phone-card-preview::after {
    content: '4';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.phone-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    height: 40px;
    background: #f5f5f5;
    border-radius: 6px;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/4;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-icon.large {
    font-size: 6rem;
}

.cta-image-placeholder {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    min-height: 600px;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Steps Box */
.steps-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.step-item:last-child {
    border-bottom: none;
}

.step-item .step-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #1a2b4a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-bottom: 0px;
}

.step-item .step-text {
    font-size: 0.7rem;
    color: #333;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a2b4a;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-radius: 5% 5% 0 0;
}

.footer-background-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.newsletter-form {
    margin-top: 10px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    background: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.newsletter-submit:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.newsletter-submit span {
    font-size: 1.2rem;
    color: #0066cc;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin: 0;
}

.footer-bottom-content a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom-content a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer {
        padding: 4rem 2rem 2.5rem !important;
    }
    
    .footer-background-text {
        font-size: 7rem !important;
        letter-spacing: 0.08em !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .footer-section h4 {
        font-size: 1.15rem !important;
        margin-bottom: 1.5rem !important;
    }

    .footer-logo {
        font-size: 1.65rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-description {
        font-size: 0.95rem !important;
    }

    .footer-section ul li {
        margin-bottom: 0.875rem !important;
    }

    .footer-section a {
        font-size: 0.92rem !important;
    }

    .footer-save-btn {
        display: inline-block !important;
        padding: 0.7rem 1.4rem !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        margin-top: 0.75rem !important;
    }

    .footer-save-btn:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.25rem 2rem !important;
        border-radius: 3rem 3rem 0 0 !important;
    }

    .footer-background-text {
        font-size: 4rem !important;
        letter-spacing: 0.05em !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .footer-section {
        text-align: center !important;
    }

    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .footer-logo {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .footer-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0 !important;
    }

    .footer-section ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .footer-section ul li {
        margin-bottom: 0 !important;
    }

    .footer-section a {
        font-size: 0.9rem !important;
        gap: 0.5rem !important;
    }

    .social-links {
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .footer-save-btn {
        display: inline-block !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        margin-top: 0.75rem !important;
    }

    .footer-save-btn:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }

    .footer-bottom {
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 0.75rem !important;
        text-align: center !important;
        font-size: 0.85rem !important;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 10%;
        border-radius: 25px;
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        flex-direction: column;
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-swiper-container {
        width: 100%;
        order: 1;
    }
    
    .hero-slide-right {
        width: 100%;
        order: 2;
        min-height: 400px;
    }
    
    .hero-slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-slide-left {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-cta-text {
        margin-left: 0;
    }
    
    .feature-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 2rem;
    }
    
    .feature-content.reverse {
        flex-direction: column-reverse;
    }

    .feature-text, .feature-visual {
        width: 100% !important;
    }

    .feature-visual {
        min-height: auto !important;
    }

    /* Tech Tools Hex Grid - Tablet */
    .tech-tools-hex-container {
        padding: 1.5rem !important;
    }

    .tech-tools-hex-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.1rem !important;
        height: auto !important;
        padding: 1.2rem 0.75rem !important;
        border-radius: 1.1rem !important;
    }

    .tech-tools-hex-item {
        padding: 1.1rem 0.7rem !important;
    }

    .tech-tools-hex-icon {
        width: 46px !important;
        height: 46px !important;
        margin-bottom: 0.75rem !important;
    }

    .tech-tools-hex-item-title {
        font-size: 0.78rem !important;
        margin-bottom: 0.6rem !important;
    }

    .tech-tools-hex-item-desc {
        font-size: 0.72rem !important;
        margin-bottom: 0.875rem !important;
    }

    .tech-tools-hex-btn {
        padding: 0.4rem 0.85rem !important;
        font-size: 0.68rem !important;
    }

    /* New User Pricing Section - Tablet */
    .lp-new-pricing-section {
        padding: 4rem 0 2rem !important;
    }

    .lp-new-title {
        font-size: 1.5rem !important;
    }

    .lp-new-subtitle {
        font-size: 1.05rem !important;
    }

    .lp-new-content-grid {
        flex-direction: row !important;
        gap: 1.5rem !important;
        padding: 0 2rem !important;
    }

    .lp-new-benefits {
        width: 50% !important;
        padding: 2.5rem 2rem !important;
        height: auto !important;
    }

    .lp-new-benefits-title {
        font-size: 1.15rem !important;
        margin-bottom: 2rem !important;
    }

    .lp-new-benefit-item {
        font-size: 0.8rem !important;
        padding: 0.875rem 0 !important;
        padding-left: 2rem !important;
    }

    .lp-new-pricing-card {
        width: 50% !important;
        /* height: auto !important; */
    }

    .lp-new-pricing-content {
        padding: 2.5rem 2rem 2.25rem !important;
        gap: 1.35rem !important;
    }

    .lp-new-plan-title {
        font-size: 1.15rem !important;
    }

    .lp-new-price-number {
        font-size: 2.4rem !important;
    }

    .lp-new-initial-fee-note {
        font-size: 0.7rem !important;
        margin-bottom: 2rem !important;
    }

    .lp-new-inquire-button {
        font-size: 0.82rem !important;
        padding: 0.95rem 1.75rem !important;
    }

    .lp-new-disclaimer-note {
        font-size: 0.8rem !important;
    }

    /* Testimonials Two Column Section - Tablet */
    .testimonials-two-column-section {
        padding: 4rem 0 !important;
    }

    .testimonials-two-column-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
        padding: 0 2rem !important;
    }

    .testimonials-column {
        gap: 2.5rem !important;
    }

    .testimonials-column-title {
        font-size: 1.3rem !important;
    }

    .testimonials-column-content {
        gap: 2rem !important;
    }

    .testimonial-block {
        height: auto !important;
        min-height: auto !important;
        padding: 1.75rem 1.5rem !important;
    }

    .testimonial-portrait-image {
        width: 4.2rem !important;
        height: 4.2rem !important;
    }

    .testimonial-english-title {
        font-size: 0.9rem !important;
    }

    .testimonial-japanese-text {
        font-size: 0.85rem !important;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero Slider */
    .hero-slider {
        min-height: auto;
        padding: 30px 0 40px;
        max-width: 100%;
    }
    
    .hero-swiper-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-slide {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero-slide-content {
        padding: 0;
    }
    
    .hero-slide-left {
        padding: 0;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .hero-slide-right {
        min-height: 250px;
        margin-top: 20px;
        border-radius: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 20px 0;
        margin-top: 25px;
    }
    
    .hero-cta .btn-primary {
        width: 50%;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 14px 30px;
    }
    
    .hero-cta-text {
        font-size: 0.85rem;
        margin-left: 0;
        text-align: center;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 10px;
        position: relative;
        margin-top: 15px;
    }
    
    /* Problems Section */
    .problems-section {
        padding: 50px 0;
    }
    
    .problems-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .problem-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .problem-description {
        font-size: 0.9rem;
    }
    
    /* Feature Sections */
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature-content.reverse {
        flex-direction: column-reverse;
    }
    
    .feature-visual {
        width: 100% !important;
        min-height: auto !important;
    }
    
    .feature-text {
        width: 100% !important;
    }
    
    /* Tech Tools Hex Grid - Mobile */
    .tech-tools-hex-container {
        padding: 1rem !important;
    }
    
    .tech-tools-hex-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .tech-tools-hex-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .tech-tools-hex-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.875rem !important;
        height: auto !important;
        padding: 1rem 0.75rem !important;
        border-radius: 1rem !important;
    }
    
    .tech-tools-hex-item {
        padding: 1rem 0.75rem !important;
        border-radius: 10px !important;
    }
    
    .tech-tools-hex-icon {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .tech-tools-hex-item-title {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }
    
    .tech-tools-hex-item-desc {
        font-size: 0.7rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.5 !important;
    }

    .tech-tools-hex-buttons {
        gap: 0.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    .tech-tools-hex-btn {
        padding: 0.35rem 0.75rem !important;
        font-size: 0.65rem !important;
        border-radius: 10px !important;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 5px 14px;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .feature-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .feature-list {
        margin-bottom: 20px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    
    .line-feature {
        min-height: auto !important;
    }
    
    .feature-image {
        width: 100%;
        height: auto !important;
        border-radius: 8px;
        object-fit: contain;
    }

    .feature-image-wrapper {
        min-height: auto !important;
    }
    
    /* Tools Detail Section */
    .tools-detail-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .tool-card {
        padding: 25px 20px;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .tool-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .tool-description {
        font-size: 0.85rem;
    }
    
    /* Steps Section */
    .steps-section {
        padding: 50px 0;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .step-card {
        padding: 25px 20px;
        width: 100%;
    }
    
    .step-number-bg {
        font-size: 4rem;
        top: 10px;
        right: 15px;
    }
    
    .step-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .step-icon-emoji {
        font-size: 1.5rem;
    }
    
    .step-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-note {
        font-size: 0.8rem;
        padding: 0 20px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    /* Testimonials Two Column Section - Mobile */
    .testimonials-two-column-section {
        padding: 3rem 0 !important;
    }
    
    .testimonials-two-column-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 0 1.25rem !important;
    }
    
    .testimonials-column {
        gap: 2rem !important;
    }
    
    .testimonials-column-title {
        font-size: 1.2rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
        line-height: 1.5;
    }

    .testimonials-column-content {
        gap: 1.5rem !important;
    }
    
    .testimonial-block {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem 1.25rem !important;
        gap: 1rem !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .testimonial-portrait {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .testimonial-portrait-image {
        width: 5rem !important;
        height: 5rem !important;
    }
    
    .testimonial-english-title {
        font-size: 0.95rem !important;
        margin-top: 0.25rem;
    }

    .testimonial-content {
        width: 100% !important;
        text-align: center !important;
    }
    
    .testimonial-japanese-text {
        font-size: 0.85rem !important;
        line-height: 1.7 !important;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .testimonial-photo {
        margin-top: 20px;
    }
    
    /* New User Pricing Section - Mobile */
    .lp-new-pricing-section {
        padding: 3rem 0 2rem !important;
    }
    
    .lp-new-title {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
        padding: 0 1.25rem !important;
        line-height: 1.4 !important;
    }
    
    .lp-new-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1.25rem !important;
    }
    
    .lp-new-content-grid {
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 0 1.25rem !important;
        margin-bottom: 2rem !important;
        align-items: stretch !important;
    }
    
    .lp-new-benefits {
        width: 100% !important;
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .lp-new-benefits-title {
        font-size: 1.1rem !important;
        margin-bottom: 1.75rem !important;
        padding-bottom: 1rem !important;
    }

    .lp-new-benefits-list {
        gap: 0.75rem !important;
        margin: auto;
    }
    
    .lp-new-benefit-item {
        font-size: 0.85rem !important;
        padding: 0.75rem 0 !important;
        padding-left: 1.75rem !important;
        line-height: 1.6 !important;
    }
    
    .lp-new-benefit-item::before {
        font-size: 0.85rem !important;
        left: 0 !important;
    }
    
    .lp-new-pricing-card {
        width: 100% !important;
        padding: 0 !important;
        position: static !important;
        border-radius: 20px !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .lp-new-pricing-content {
        padding: 2rem 1.5rem 1.75rem !important;
        gap: 1.25rem !important;
        margin: auto;
    }
    
    .lp-new-popular-badge {
        top: 0.75rem !important;
        padding: 0.35rem 0.85rem !important;
        font-size: 0.65rem !important;
    }
    
    .lp-new-plan-title {
        font-size: 1.15rem !important;
        margin: 1.25rem 0 0.75rem !important;
    }

    .lp-new-main-price {
        margin-top: 2.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .lp-new-price-symbol {
        font-size: 1.1rem !important;
    }
    
    .lp-new-price-number {
        font-size: 2.2rem !important;
    }
    
    .lp-new-price-period {
        font-size: 1.1rem !important;
    }
    
    .lp-new-initial-fee-note {
        font-size: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .lp-new-inquire-button {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }

    .lp-new-disclaimer-note {
        font-size: 0.75rem !important;
        padding-top: 0.75rem !important;
    }
    
    .lp-new-features-list {
        gap: 11px;
    }
    
    .lp-new-feature-check {
        font-size: 1.05rem;
    }
    
    .lp-new-feature-text {
        font-size: 0.88rem;
    }
    
    .lp-new-inquire-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .lp-new-disclaimer-note {
        font-size: 0.75rem;
    }
    
    .lp-new-payment-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .lp-new-payment-option {
        padding: 10px 14px;
    }
    
    .lp-new-payment-icon {
        font-size: 1.3rem;
    }
    
    .lp-new-payment-text {
        font-size: 0.95rem;
    }
    
    .lp-new-disclaimer {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .lp-new-cta-wrapper {
        padding: 0 20px;
    }
    
    .lp-new-cta-button {
        width: 100%;
        max-width: 100%;
        display: block;
    }
    
    .lp-new-cta-note {
        font-size: 0.85rem;
    }
    
    /* Concept Bridge Section - Mobile */
    .lp-bridge-section {
        padding: 55px 0;
    }
    
    .lp-bridge-headline {
        font-size: 1.875rem;
        line-height: 1.35;
        padding: 0 20px;
    }
    
    /* Final CTA Section */
    .final-cta-section {
        padding: 50px 0;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .cta-image {
        width: 100%;
        order: 1;
        height: 250px;
    }
    
    .cta-text {
        order: 2;
        padding: 0;
        text-align: center;
        width: 100%;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-text .btn-primary {
        width: 75%;
        max-width: 100%;
        font-size: 1rem;
        padding: 14px 30px;
    }
    
    /* Steps Box */
    .steps-box {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .step-item {
        padding: 12px 0;
    }
    
    .step-item .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-item .step-text {
        font-size: 0.9rem;
    }
    
    .feature-note {
        font-size: 0.8rem;
        margin-top: 20px;
    }
}

@media (max-width: 510px) {
    .hero-cta .btn-primary {
        width: 90%;
    }

    /* Tech Tools Hex Grid - Very Small Screens */
    .tech-tools-hex-container {
        padding: 0.75rem !important;
    }

    .tech-tools-hex-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.625rem !important;
        padding: 0.875rem 0.625rem !important;
        border-radius: 0.875rem !important;
    }

    .tech-tools-hex-item {
        padding: 0.875rem 0.625rem !important;
        border-radius: 8px !important;
    }

    .tech-tools-hex-icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 0.5rem !important;
    }

    .tech-tools-hex-item-title {
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.25 !important;
    }

    .tech-tools-hex-item-desc {
        font-size: 0.65rem !important;
        margin-bottom: 0.625rem !important;
        line-height: 1.4 !important;
    }

    .tech-tools-hex-buttons {
        gap: 0.4rem !important;
        margin-top: 0.4rem !important;
    }

    .tech-tools-hex-btn {
        padding: 0.3rem 0.625rem !important;
        font-size: 0.6rem !important;
        border-radius: 8px !important;
    }

    /* Footer - Very Small Screens */
    .footer {
        padding: 2.5rem 1rem 1.75rem !important;
        border-radius: 2rem 2rem 0 0 !important;
    }

    .footer-background-text {
        font-size: 3rem !important;
        letter-spacing: 0.03em !important;
    }

    .footer-content {
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .footer-section h4 {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .footer-logo {
        font-size: 1.35rem !important;
        margin-bottom: 0.625rem !important;
    }

    .footer-description {
        font-size: 0.85rem !important;
    }

    .footer-section ul {
        gap: 0.625rem !important;
    }

    .footer-section a {
        font-size: 0.85rem !important;
    }

    .footer-save-btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.85rem !important;
        margin-top: 0.625rem !important;
    }

    .footer-bottom {
        padding-top: 1.25rem !important;
    }

    .footer-bottom-content {
        font-size: 0.8rem !important;
        gap: 0.625rem !important;
    }
}