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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    /* Prevent scroll amplification */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

img {
  visibility: visible !important;
  opacity: 1 !important;
}


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

/* Image Navigation */
.image-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid rgba(74, 222, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: rgba(74, 222, 128, 0.4);
    transform: scale(1.2);
}

.nav-dot.active {
    background: rgba(74, 222, 128, 0.7);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.dot-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-dot:hover .dot-label {
    opacity: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 24px;
    color: #333;
    font-weight: 700;
}

.logo h1 i {
    margin-right: 8px;
    animation: buzz 2s infinite;
}

@keyframes buzz {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(1deg); }
}

.logo p {
    font-size: 12px;
    color: #666;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #666;
}

.nav-cta {
    background: linear-gradient(135deg, #333, #555);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Parallax Background - Only for Hero Section */
.free-hero .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.free-hero .parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    /* Ensure parallax layers only appear in hero section */
    opacity: 1;
    pointer-events: auto;
}

/* Remove parallax effects from carousel section */
.parallax-carousel .parallax-bg {
    display: none;
}

.parallax-carousel .parallax-layer {
    display: none;
}

.free-hero .layer-1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(248, 250, 252, 0.4) 100%);
    transform: translateZ(-10px) scale(2);
}

.free-hero .layer-2 {
    background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    transform: translateZ(-5px) scale(1.5);
}

.free-hero .layer-3 {
    background: radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    transform: translateZ(-2px) scale(1.2);
}

.free-hero .layer-4 {
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 30%);
    transform: translateZ(-1px) scale(1.1);
}

/* Remove parallax effects from other sections */
.diagonal-section .parallax-bg,
.diagonal-free .parallax-bg,
.about .parallax-bg,
.benefits .parallax-bg,
.contact .parallax-bg,
.faq .parallax-bg,
.business-cycle .parallax-bg,
.customer-check .parallax-bg {
    display: none;
}

.diagonal-section .parallax-layer,
.diagonal-free .parallax-layer,
.about .parallax-layer,
.benefits .parallax-layer,
.contact .parallax-layer,
.faq .parallax-layer,
.business-cycle .parallax-layer,
.customer-check .parallax-layer {
    display: none;
}

/* Bee Animations */
.bee {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 50%;
    animation: fly 8s infinite linear;
    z-index: 10;
}

.bee::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #333;
    border-radius: 1px;
}

.bee::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 50%;
    animation: buzz 0.1s infinite;
}

.bee-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bee-2 {
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

.bee-3 {
    top: 80%;
    left: 20%;
    animation-delay: -4s;
}

.bee-4 {
    top: 30%;
    left: 70%;
    animation-delay: -1s;
}

.bee-5 {
    top: 70%;
    left: 30%;
    animation-delay: -3s;
}

@keyframes fly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
    }
    75% {
        transform: translate(100px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Diagonal Sections */
.diagonal-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.diagonal-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, rgba(212, 165, 116, 0.1) 45%, rgba(212, 165, 116, 0.1) 55%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.diagonal-line.reverse {
    background: linear-gradient(-135deg, transparent 45%, rgba(212, 165, 116, 0.1) 45%, rgba(212, 165, 116, 0.1) 55%, transparent 55%);
}

.diagonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.diagonal-section.reverse .diagonal-content {
    grid-template-columns: 1fr 1fr;
}

/* Image Sections */
.image-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(184, 134, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.floating-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card i {
    color: #d4a574;
    font-size: 20px;
    margin-bottom: 5px;
}

.floating-card span {
    display: block;
    font-weight: 600;
    color: #333;
}

.overlay-text {
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.overlay-badge {
    background: linear-gradient(135deg, #d4a574, #b8860b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.founder-info {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.founder-info h4 {
    color: #d4a574;
    margin-bottom: 5px;
}

/* Text Sections */
.text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100vh;
    min-height: 100vh;
}

.text-content {
    max-width: 500px;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    color: #333;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary{
    background: #f3d111;
    color: white;

}

.btn-secondary:hover  {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-3px);	
}

.btn-line {
    background: #00c300;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-line:hover {
    background: #00a000;
    transform: translateY(-3px);
}

/* Hexagonal Section */
.hexagonal {
    position: relative;
    min-height: 60vh;
    padding: 60px 0;
    background-image: url(./assets/image/worker-width.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hexagonal-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hexagonal-text {
    text-align: center;
}

.hexagonal-text h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hexagonal-text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hex-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hex-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hex-feature i {
    color: #666;
    font-size: 18px;
}

.hex-feature span {
    font-weight: 600;
    color: #333;
}

.hexagonal-images {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hex-image {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: rotate 20s linear infinite;
}

.hex-image:hover {
    transform: scale(1.1);
    z-index: 10;
}

.hex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hex-image:hover .hex-overlay {
    opacity: 1;
}

.hex-overlay span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.hex-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.hex-2 {
    top: 20%;
    right: 0;
    animation-delay: -3s;
}

.hex-3 {
    bottom: 20%;
    right: 0;
    animation-delay: -6s;
}

.hex-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -9s;
}

.hex-5 {
    bottom: 20%;
    left: 0;
    animation-delay: -12s;
}

.hex-6 {
    top: 20%;
    left: 0;
    animation-delay: -15s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translateX(110px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(110px) rotate(-360deg);
    }
}

/* Customer Check Section */
.customer-check {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.customer-check::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 250, 252, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.check-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateY(-5px);
}

.check-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.check-icon i {
    color: white;
    font-size: 24px;
}

.check-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.check-item p {
    color: #666;
    font-size: 13px;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, #e6d7a8 0%, #d4a574 100%);
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #f3d111;
    font-size: 18px;
}

.feature span {
    font-weight: 600;
    color: #333;
}
.check-item:nth-child(1) .check-icon{
	background:pink;
}
.check-item:nth-child(2) .check-icon{
	background:lightgreen;
}
.check-item:nth-child(3) .check-icon{
	background:lightblue;
}
.check-item:nth-child(4) .check-icon{
	background:brown;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

.benefits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tag {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	border: 2px solid #f3d111;
}

/* Business Cycle Section */
.business-cycle {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.business-cycle h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

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

.cycle-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333, #555);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-content h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.faq h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question h4 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.benefit-icon i {
    color: white;
    font-size: 32px;
}

.benefit-item h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Special Benefits Section (10大特典, Brighter, Step-Like, Larger Cards, Image Placeholders) */
.special-benefits-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 36px 48px;
    width: 96vw;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.special-benefit-step {
    background: rgba(255,255,255,0.97);
    border-radius: 30px 30px 40px 40px/40px 40px 30px 30px;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.10), 0 0 0 1px #fffbe6;
    padding: 22px 32px;
    width: 100%;
    min-height: 100px;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 1.2s;
    box-sizing: border-box;
}

.special-benefit-step:hover {
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.18), 0 0 0 2px #ffe7b3;
    transform: scale(1.04) translateY(-8px);
    z-index: 10;
}

.benefit-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4a574;
    background: #fffbe6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #ffe7b3;
    flex-shrink: 0;
}

.benefit-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 4px 16px rgba(212,165,116,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf6e3;
    flex-shrink: 0;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.benefit-content {
    color: #b8860b;
    font-weight: 600;
    font-size: 1.08rem;
    line-height: 1.4;
    text-align: left;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 900px) {
    .special-benefits-steps {
        max-width: 98vw;
        gap: 20px 16px;
    }
    .special-benefit-step {
        padding: 16px 12px;
    }
}

@media (max-width: 700px) {
    .special-benefits-steps {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 98vw;
        max-width: 100vw;
    }
    .special-benefit-step {
        padding: 12px 8px;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #b8860b 0%, #d4a574 100%);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
}

.line-contact {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.line-contact h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.line-contact p {
    color: #666;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-nav {
        display: none;
    }
    
    .diagonal-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diagonal-section.reverse .diagonal-content {
        grid-template-columns: 1fr;
    }
    
    .image-section {
        height: 50vh;
    }
    
    .text-section {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hexagonal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hexagonal-images {
        width: 300px;
        height: 300px;
    }
    
    .hex-image {
        width: 80px;
        height: 80px;
    }
    
    .check-grid {
        grid-template-columns: 1fr;
    }
    
    .cycle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav {
        display: none;
    }
}

/* Enhanced Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    /* Prevent scroll amplification and ensure consistent scroll behavior */
    scroll-padding-top: 0;
    scroll-padding-bottom: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    /* Prevent scroll amplification */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Enhanced Parallax on Scroll */
.parallax-bg {
    transform-style: preserve-3d;
}

.parallax-layer {
    transform-style: preserve-3d;
}

/* Diagonal Hero Section */
.diagonal-hero {
    position: relative;
    min-height: 70vh;
    width: 100vw;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf6e3 0%, #f4e4bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.diagonal-hero .parallax-bg {
    z-index: 0;
}
.diagonal-hero-content {
    position: relative;
    display: flex;
    width: 80vw;
    height: 60vh;
    max-width: 1400px;
    min-height: 400px;
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    z-index: 2;
}
.diagonal-hero-image {
    width: 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-diagonal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: 0 10px 30px rgba(212,165,116,0.10);
}
.diagonal-hero-divider {
    width: 0;
    height: 100%;
    border-left: 6px solid #d4a574;
    transform: skew(-25deg);
    margin-left: -3vw;
    margin-right: -3vw;
    z-index: 3;
    background: none;
}
.diagonal-hero-text {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 30px;
    z-index: 2;
}
.diagonal-hero-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.diagonal-hero-text .highlight {
    color: #d4a574;
}
.diagonal-hero-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Parallax Carousel Section */
.parallax-carousel {
    position: relative;
    min-height: 60vh;
    width: 100vw;
    /* background: linear-gradient(135deg, #ffffff 0%, #f1c54b 100%); */
    background-image: url(./assets/image/bg.jpg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.carousel-bg.parallax-bg {
    z-index: 0;
}
.carousel-container {
    position: relative;
    width: 80vw;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 2;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 70vw;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.carousel-image {
    width: 320px;
    height: 320px;
    min-width: 320px;
    min-height: 320px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 40px rgba(212,165,116,0.18);
    border: 8px solid #fffbe6;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1), box-shadow 0.5s;
    will-change: transform;
    position: relative;
}
.carousel-image:not(:first-child) {
    opacity: 0.7;
    filter: blur(1px) grayscale(0.2);
}
.carousel-image.active {
    transform: scale(1.15) translateY(-20px);
    z-index: 5;
    opacity: 1;
    filter: none;
    box-shadow: 0 20px 60px rgba(212,165,116,0.25);
}
.carousel-caption {
    margin-top: 30px;
    text-align: center;
    z-index: 2;
}
.carousel-caption h3 {
    font-size: 2rem;
    color: #b8860b;
    font-weight: 700;
    margin-bottom: 10px;
}
.carousel-caption p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive for Diagonal Hero and Carousel */
@media (max-width: 1100px) {
    .main-diagonal-img {
        min-width: 300px;
    }
    .carousel-image {
        width: 220px;
        height: 220px;
        min-width: 220px;
        min-height: 220px;
    }
    .carousel-track {
        gap: 20px;
    }
}
@media (max-width: 800px) {
    .diagonal-hero-content {
        flex-direction: column;
        width: 96vw;
        height: auto;
        min-height: 300px;
    }
    .diagonal-hero-image, .diagonal-hero-text {
        width: 100%;
        min-height: 180px;
    }
    .diagonal-hero-divider {
        display: none;
    }
    .carousel-container {
        width: 98vw;
    }
    .carousel-track {
        width: 90vw;
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .main-diagonal-img {
        min-width: 180px;
    }
    .carousel-image {
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Extra Parallax and Bee Effects for New Sections */
.bee-hero-1, .bee-hero-2, .bee-carousel-1, .bee-carousel-2 {
    z-index: 10;
    pointer-events: none;
}
.bee-hero-1 {
    top: 15%; left: 15%; animation-delay: -1.5s; z-index: 20;
}
.bee-hero-2 {
    top: 25%; left: 85%; animation-delay: -3.2s; z-index: 20;
}
.bee-hero-3 {
    top: 45%; left: 10%; animation-delay: -2.1s; z-index: 20;
}
.bee-hero-4 {
    top: 65%; left: 75%; animation-delay: -4.5s; z-index: 20;
}
.bee-hero-5 {
    top: 35%; left: 90%; animation-delay: -1.8s; z-index: 20;
}
.bee-carousel-1 {
    top: 30%; left: 80%; animation-delay: -1s;
}
.bee-carousel-2 {
    top: 60%; left: 10%; animation-delay: -3s;
}

/* Parallax background image for sections (example) */
.diagonal-hero, .parallax-carousel {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Add more parallax layers if needed */
.parallax-bg .parallax-layer {
    pointer-events: none;
}

/* Free-Form Parallax Carousel Section (Nature Inspired) */
.parallax-carousel.free-nature {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    background-color: #f7ffe6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1;
    margin-top: -50vh; /* Reduced overlap to prevent excessive page growth */
    padding-bottom: 30px; /* Add space below the section */
}

.carousel-bg.parallax-bg {
    display: none; /* Remove carousel parallax background */
}

/* Smooth transitions for background visibility */
.hero-background {
    transition: opacity 0.3s ease-out, transform 0.1s ease-out;
    pointer-events: none;
    z-index: 1;
}
.carousel-floating-container {
    position: relative;
    width: 90vw;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 2;
    pointer-events: none;
    padding: 0 60px;
}

.carousel-text-left,
.carousel-text-right {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    width: 400px;
    text-align: center;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.carousel-text-left {
    text-align: center;
}

.carousel-text-right {
    text-align: center;
}

.carousel-title-left,
.carousel-title-right {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6d5007;
    margin-bottom: 15px;
    transition: all 0.5s ease;
    text-shadow: 0 2px 8px rgba(184, 134, 11, 0.2);
}

.carousel-desc-left,
.carousel-desc-right {
    font-size: 1.6rem;
    color: #000000;
    line-height: 1.6;
    transition: all 0.5s ease;
}
.carousel-btn {
    position: absolute;
    border-radius: 50%;
    width: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    font-size: 1rem;
    color: #d4a574;
    cursor: pointer;
    border: none;
    z-index: 15;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn.left {
    left: -25px;
}

.carousel-btn.right {
    right: -25px;
}

.carousel-floating-track {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    pointer-events: none;
}
.carousel-floating-image {
    position: absolute;
    border-radius: 50%;
    width: 480px;
    height: 480px;
    box-shadow: 0 20px 60px rgba(212,165,116,0.18), 0 0 0 12px #fffbe6;
    border: 0;
    transition: transform 1s cubic-bezier(.25,.8,.25,1), opacity 0.7s, box-shadow 0.7s;
    will-change: transform, opacity;
    opacity: 0.7;
    z-index: 1;
    pointer-events: auto;
    overflow: hidden;
}

.carousel-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.carousel-floating-image:hover img {
    transform: scale(1.05);
}
.carousel-floating-image.active {
    opacity: 1;
    z-index: 10;
    box-shadow: 0 30px 100px 10px rgba(212,165,116,0.25), 0 0 0 18px #fffbe6;
    transform: scale(1.18) translateY(-30px) !important;
    border: 3px solid rgba(212, 165, 116, 0.8);
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% { 
        box-shadow: 0 30px 100px 10px rgba(212,165,116,0.25), 0 0 0 18px #fffbe6;
    }
    50% { 
        box-shadow: 0 30px 100px 15px rgba(212,165,116,0.4), 0 0 0 18px #fffbe6;
    }
}
.carousel-floating-image.left {
    transform: translateX(-140px) scale(0.95) rotate(-7deg);
    z-index: 5;
    opacity: 0.85;
}
.carousel-floating-image.right {
    transform: translateX(140px) scale(0.95) rotate(7deg);
    z-index: 5;
    opacity: 0.85;
}
.carousel-floating-image.far-left {
    transform: translateX(-240px) scale(0.8) rotate(-15deg);
    z-index: 2;
    opacity: 0.5;
}
.carousel-floating-image.far-right {
    transform: translateX(240px) scale(0.8) rotate(15deg);
    z-index: 2;
    opacity: 0.5;
}
.carousel-floating-caption {
    margin-top: 40px;
    text-align: center;
    z-index: 2;
    color: #b8860b;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 8px #fffbe6;
}
.carousel-floating-caption h3 {
    font-size: 2.2rem;
    color: #b8860b;
    font-weight: 700;
    margin-bottom: 10px;
}
.carousel-floating-caption p {
    color: #666;
    font-size: 1.1rem;
}

/* Diagonal Free-Form Section */
.diagonal-free {
    position: relative;
    min-height: 70vh;
    width: 100vw;
    background: linear-gradient(120deg, #fafff2 0%, #fffbe6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: visible;
}
.diagonal-free-content {
    position: relative;
    width: 90vw;
    height: 60vh;
    min-height: 400px;
    max-width: 1500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 2;
    pointer-events: none;
}
.diagonal-free-image {
    width: 70vw;
    height: 60vh;
    min-width: 500px;
    min-height: 350px;
    max-width: 1100px;
    max-height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: auto;
}
.free-diagonal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 80px 120px 60px/80px 40px 60px 120px;
    box-shadow: 0 30px 100px 10px rgba(212,165,116,0.18);
}
.diagonal-free-divider {
    position: absolute;
    left: 65vw;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 8px solid #d4a574;
    transform: skew(-25deg);
    z-index: 4;
    background: none;
    box-shadow: 0 0 30px 0 #fffbe6;
}
.diagonal-free-text {
    position: absolute;
    right: 2vw;
    top: 10vh;
    width: 25vw;
    min-width: 220px;
    max-width: 400px;
    background: rgba(255,255,255,0.92);
    border-radius: 30px 60px 30px 60px/60px 30px 60px 30px;
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.08);
    padding: 40px 30px;
    z-index: 5;
    pointer-events: auto;
}
.diagonal-free-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.diagonal-free-text .highlight {
    color: #d4a574;
}
.diagonal-free-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Green Company Section */
.about.green-bg {
    background: linear-gradient(120deg, #eaffea 0%, #d4f7d4 100%);
}
.about.green-bg .diagonal-section {
    background: transparent;
}
.about.green-bg .text-section {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(100,200,100,0.08);
}
.about.green-bg .tag {
    background: #eaffea;
    color: #3a7d3a;
}

/* Parallax and Bee Effects for New Sections */
.bee-diagonal-1 {
    top: 30%; left: 80%; animation-delay: -1.5s;
}

/* Remove strict frames, allow overlap, floating, and organic spacing */
.carousel-floating-image, .free-diagonal-img, .diagonal-free-text, .about.green-bg .text-section {
    pointer-events: auto;
}

/* Responsive adjustments for free-form sections */
@media (max-width: 1200px) {
    .carousel-floating-image {
        width: 340px;
        height: 340px;
    }
    .carousel-floating-track {
        width: 340px;
        height: 340px;
    }
    .carousel-floating-container {
        height: 340px;
        gap: 40px;
        padding: 0 30px;
    }
    .diagonal-free-image {
        min-width: 320px;
        min-height: 200px;
    }
    .carousel-text-left,
    .carousel-text-right {
        max-width: 250px;
    }
    .carousel-title-left,
    .carousel-title-right {
        font-size: 1.6rem;
    }
    .carousel-desc-left,
    .carousel-desc-right {
        font-size: 1rem;
    }
    .carousel-btn {
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #d4a574;
        z-index: 15;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .carousel-btn.left {
        left: -20px;
    }
    .carousel-btn.right {
        right: -20px;
    }
}
@media (max-width: 800px) {
    .carousel-floating-image {
        width: 180px;
        height: 180px;
    }
    .carousel-floating-track {
        width: 180px;
        height: 180px;
    }
    .carousel-floating-container {
        height: 180px;
        gap: 30px;
        padding: 0 20px;
    }
    .carousel-text-left,
    .carousel-text-right {
        max-width: 150px;
    }
    .carousel-title-left,
    .carousel-title-right {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .carousel-desc-left,
    .carousel-desc-right {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #d4a574;
        z-index: 15;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .carousel-btn.left {
        left: -20px;
    }
    .carousel-btn.right {
        right: -20px;
    }
    .diagonal-free-content {
        flex-direction: column;
        width: 98vw;
        height: auto;
        min-height: 200px;
    }
    .diagonal-free-image {
        width: 90vw;
        min-width: 120px;
        min-height: 80px;
        max-width: 98vw;
        max-height: 300px;
    }
    .diagonal-free-divider {
        left: 80vw;
        border-left-width: 4px;
    }
    .diagonal-free-text {
        width: 80vw;
        min-width: 120px;
        max-width: 98vw;
        top: 40vh;
        padding: 20px 10px;
    }
}

@media (max-width: 600px) {
    .carousel-floating-container {
        flex-direction: column;
        height: auto;
        min-height: 400px;
        padding: 20px 10px;
        gap: 20px;
    }
    
    .carousel-text-left,
    .carousel-text-right {
        max-width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .carousel-text-left {
        order: 1;
    }
    
    .carousel-floating-track {
        order: 2;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 200px;
    }
    
    .carousel-text-right {
        order: 3;
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #d4a574;
        z-index: 15;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-btn.left {
        left: -17.5px;
    }
    
    .carousel-btn.right {
        right: -17.5px;
    }
    
    .carousel-floating-image {
        width: 150px;
        height: 150px;
    }
    
    .carousel-floating-image.left {
        transform: translateX(-75px) scale(0.9) rotate(-5deg);
    }
    
    .carousel-floating-image.right {
        transform: translateX(75px) scale(0.9) rotate(5deg);
    }
    
    .carousel-floating-image.far-left {
        transform: translateX(-120px) scale(0.7) rotate(-10deg);
    }
    
    .carousel-floating-image.far-right {
        transform: translateX(120px) scale(0.7) rotate(10deg);
    }
    
    .carousel-title-left,
    .carousel-title-right {
        font-size: 1.1rem;
    }
    
    .carousel-desc-left,
    .carousel-desc-right {
        font-size: 0.85rem;
    }
}

/* Strong parallax for all new sections */
.parallax-carousel.free-nature .parallax-bg .parallax-layer,
.diagonal-free .parallax-bg .parallax-layer,
.about.green-bg .parallax-bg .parallax-layer {
    will-change: transform;
    pointer-events: none;
}

#special-benefits {
    padding-bottom: 50px;
}

/* Free-Form Hero Section (No Borders, No Boxes) */
  .free-hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.free-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .hero-background {
    position: fixed;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    will-change: transform;
    /* Fixed background parallax effect */
    transform: translateY(0);
    transition: transform 0.1s ease-out;
    /* Ensure hero background only appears during hero section */
    opacity: 0;
    pointer-events: none;
}

/* Show hero background only when hero section is in view */
.free-hero .hero-background {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
  
  .hero-carousel {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .free-hero-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
  }
  
  .free-hero-img.active {
      opacity: 1;
  }
  
  .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(184, 134, 11, 0.2) 100%);
      z-index: 2;
      pointer-events: none;
  }
  
  .hero-carousel-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 15;
  }
  
  .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      border: 2px solid rgba(255, 255, 255, 0.8);
      cursor: pointer;
      transition: all 0.3s ease;
      pointer-events: auto !important;
      z-index: 10;
  }
  
  .hero-dot:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: scale(1.2);
  }
  
  .hero-dot.active {
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 255, 255, 1);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  /* Hero Carousel Navigation Buttons */
  .hero-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      cursor: pointer;
      z-index: 15;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      pointer-events: auto !important;
      z-index: 10;
  }
  
  .hero-carousel-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 1);
      transform: translateY(-50%) scale(1.05);
      border-color: rgba(255, 255, 255, 0.5);
  }
  
  .hero-carousel-btn:active {
      transform: translateY(-50%) scale(0.98);
  }
  
  .hero-prev-btn {
      left: 15px;
  }
  
  .hero-next-btn {
      right: 15px;
  }
  
  .hero-carousel-btn i {
      transition: all 0.3s ease;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
  
  .hero-carousel-btn:hover i {
      transform: scale(1.1);
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  }
  
  /* Responsive design for hero carousel */
  @media (max-width: 768px) {
      .free-hero-text {
          padding: 0 20px;
          max-width: 600px;
      }
      
      .free-hero-text h2 {
          font-size: 2rem;
      }
      
      .hero-carousel-btn {
          width: 35px;
          height: 35px;
          font-size: 14px;
      }
      
      .hero-prev-btn {
          left: 12px;
      }
      
      .hero-next-btn {
          right: 12px;
      }
      
      .hero-carousel-dots {
          bottom: 20px;
          gap: 8px;
      }
      
      .hero-dot {
          width: 10px;
          height: 10px;
      }
  }
  
  @media (max-width: 480px) {
      .free-hero-text {
          padding: 0 15px;
          max-width: 400px;
      }
      
      .free-hero-text h2 {
          font-size: 1.5rem;
      }
      
      .hero-carousel-btn {
          width: 30px;
          height: 30px;
          font-size: 12px;
      }
      
      .hero-prev-btn {
          left: 8px;
      }
      
      .hero-next-btn {
          right: 8px;
      }
      
      .hero-carousel-dots {
          bottom: 15px;
          gap: 6px;
      }
      
      .hero-dot {
          width: 8px;
          height: 8px;
      }
  }
  .free-hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px 40px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.free-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    background: none;
    text-shadow: none;
}

.free-hero-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
    background: none;
    text-shadow: none;
}
.free-hero-text .highlight {
    color: #d4a574;
    background: linear-gradient(90deg, #fffbe6 60%, #ffe7b3 100%);
    border-radius: 8px;
    padding: 0 6px;
}
.free-hero-text p {
    font-size: 1.18rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 36px;
    background: none;
}
.free-hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    background: none;
}

/* Responsive for Free-Form Hero */
@media (max-width: 1100px) {
    .free-hero-image {
        width: 48vw;
        height: 40vh;
        min-width: 180px;
        min-height: 120px;
    }
    .free-hero-text {
        width: 60vw;
        right: 2vw;
        top: 10vh;
    }
}
@media (max-width: 700px) {
    .free-hero {
        flex-direction: column;
        min-height: 70vh;
    }
    .free-hero-image {
        position: static;
        width: 90vw;
        height: 30vh;
        min-width: 100px;
        min-height: 80px;
        max-width: 98vw;
        max-height: 200px;
        margin: 0 auto 20px auto;
    }
    .free-hero-text {
        position: static;
        width: 90vw;
        min-width: 100px;
        max-width: 98vw;
        margin: 0 auto;
        padding: 0 10px;
    }
    .free-hero-text h2 {
        font-size: 1.4rem;
    }
}

/* Free-Bright Sections (Business Cycle, FAQ, Benefits, Contact) */
.free-bright {
    position: relative;
    min-height: 60vh;
    width: 100vw;
    background: linear-gradient(120deg, #fffef8 0%, #f7ffe6 100%);
    overflow: visible;
    z-index: 1;
    padding: 0;
}

/* Business Cycle Free Layout */
.business-cycle.free-bright {
    min-height: 60vh;
    background: linear-gradient(120deg, #fffbe6 0%, #fffef8 100%);
    padding: 0 0 80px 0;
}
.cycle-title {
    text-align: center;
    font-size: 2.3rem;
    color: #b8860b;
    font-weight: 700;
    margin: 60px 0 30px 0;
    letter-spacing: 0.05em;
    background: none;
}
.cycle-free-steps {
    position: relative;
    width: 100vw;
    height: 320px;
    min-height: 220px;
    margin: 0 auto;
}
.cycle-free-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatStep 2.5s ease-in-out infinite alternate;
    z-index: 2;
}
@keyframes floatStep {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-18px) scale(1.04); }
}
.cycle-free-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(212,165,116,0.13);
    margin-bottom: 18px;
    transition: transform 0.4s, box-shadow 0.4s;
    animation: popIn 1.2s cubic-bezier(.25,.8,.25,1);
}
.cycle-free-img:hover {
    transform: scale(1.12) rotate(-3deg);
    box-shadow: 0 20px 60px rgba(212,165,116,0.22);
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}
.cycle-free-text {
    color: #b8860b;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 8px 18px;
    margin-top: -10px;
    box-shadow: 0 2px 10px rgba(212,165,116,0.08);
    animation: fadeInUp 1.2s;
}

/* FAQ Free Layout */
.faq.free-bright {
    min-height: 50vh;
    background: linear-gradient(120deg, #fffef8 0%, #eaffea 100%);
    padding: 30px 0 60px 0;
}
.faq-title {
    text-align: center;
    font-size: 2.2rem;
    color: #3a7d3a;
    font-weight: 700;
    margin: 60px 0 30px 0;
    letter-spacing: 0.05em;
    background: none;
}
.faq-free-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100vw;
    margin: 0 auto;
    flex-wrap: wrap;
	padding: 0 20px;
}
.faq-free-item {
    background: rgba(255,255,255,0.92);
    border-radius: 30px 60px 30px 60px/60px 30px 60px 30px;
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.08);
    padding: 36px 30px;
    min-width: 260px;
    max-width: 30%;
    margin: 20px 0;
    animation: fadeInUp 1.2s;
    transition: box-shadow 0.3s, transform 0.3s;
}
.faq-free-item:hover {
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.18);
    transform: scale(1.04) rotate(-2deg);
}
.faq-free-q {
    color: #b8860b;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.faq-free-a {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Benefits Free Layout */
.benefits.free-bright {
    min-height: 60vh;
    background: linear-gradient(120deg, #fffbe6 0%, #fffef8 100%);
    padding: 0 0 80px 0;
}
.benefits-title {
    text-align: center;
    font-size: 2.3rem;
    color: black;
    font-weight: 700;
    padding: 60px 0 60px 0;
    letter-spacing: 0.05em;
    background: none;
}
.benefits-free-list {
    position: relative;
    width: 100vw;
    max-height: 600px;
    height:100%;
    margin: 0 auto;
}
.benefits-free-list.list2{
	height: 440px;
	min-height: unset;
}
.benefit-free-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatStep 2.5s ease-in-out infinite alternate;
    z-index: 2;
}
.benefit-free-item p{
	max-width: 240px;
	margin-top: 10px;
}
.benefit-free-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(212,165,116,0.13);
    margin-bottom: 18px;
    transition: transform 0.4s, box-shadow 0.4s;
    animation: popIn 1.2s cubic-bezier(.25,.8,.25,1);
}
.benefit-free-img:hover {
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 20px 60px rgba(212,165,116,0.22);
}
.benefit-free-text {
    color: #d4a574;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 8px 18px;
    margin-top: -10px;
    box-shadow: 0 2px 10px rgba(212,165,116,0.08);
    animation: fadeInUp 1.2s;
}

/* Contact Free Layout */
.contact.free-bright {
    min-height: 50vh;
    background: linear-gradient(120deg, #fffef8 0%, #ffe7b3 100%);
    padding: 0 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-free-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.contact-free-content h3{
    font-size: 2.5rem;
}

.contact-free-content p {
    font-size: 1.2rem;
    text-align: center;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.line-contact {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    min-width: 0;
    max-width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line-contact h4,
.line-contact p {
    text-align: center;
}

@media (max-width: 900px) {
    .contact-free-content {
        padding: 36px 0 24px 0;
        gap: 24px;
    }
}

/* Bees and Parallax for Free-Bright Sections */
.bee-cycle-1 { top: 20%; left: 80%; animation-delay: -1.2s; }
.bee-faq-1 { top: 40%; left: 10%; animation-delay: -2.1s; }
.bee-benefit-1 { top: 15%; left: 60%; animation-delay: -1.7s; }
.bee-contact-1 { top: 60%; left: 20%; animation-delay: -2.5s; }

/* Responsive for Free-Bright Sections */
@media (max-width: 1100px) {
    .cycle-free-img, .benefit-free-img {
        width: 100px;
        height: 100px;
    }
    .cycle-free-steps, .benefits-free-list {
        height: 180px;
    }
}
@media (max-width: 700px) {
    .cycle-free-img, .benefit-free-img {
        width: 60px;
        height: 60px;
    }
    .cycle-free-steps, .benefits-free-list {
        height: 100px;
    }
    .faq-free-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .faq-free-item {
        min-width: 120px;
        max-width: 98vw;
        padding: 18px 10px;
    }
    .contact-free-content {
        min-width: 120px;
        max-width: 98vw;
        padding: 40px 10px 0;
    }
}

/* More active fade/float animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Bright backgrounds for restored sections */
.bright-bg {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%) !important;
}
.bright-green-bg {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.7) 100%) !important;
}

/* Restore classic layout for customer-check, special-offer, about */
#customer-check{
	background: url(/wp-content/uploads/2025/02/leftBg.jpg) !important;	
}
#customer-check .text-section{
	background: unset!important;	
}
.customer-check .diagonal-section,
.special-offer .diagonal-section,
.about .diagonal-section {
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0 auto;
    max-width: 1400px;
    min-height: 500px;
}
.customer-check .diagonal-content,
.special-offer .diagonal-content,
.about .diagonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    width: 100%;
    min-height: 400px;
}
.customer-check .text-section,
.special-offer .text-section,
.about .text-section {
    background: rgba(255,255,255,0.95);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 48px 40px;
    margin: 40px;
}

.customer-check .image-section,
.special-offer .image-section,
.about .image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.customer-check .image-container,
.special-offer .image-container,
.about .image-container {
    width: 80%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.customer-check img,
.special-offer img,
.about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Business Cycle Steps (5 horizontal cards, flexible boundaries) */
#business-cycle-steps{
    max-width: 90%;
    margin-inline: auto;
    text-align: center;	
}
#business-cycle-steps h4{
	margin-bottom:24px;
}

.business-cycle-steps {
    width: 100vw;
    padding: 60px 0 80px 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%) !important;
    align-items: center;
    justify-content: center;
}
.steps-horizontal {
	display: grid;
	justify-items: center; /* 横方向 */
	align-items: center;   /* 縦方向 */
    grid-template-columns: 1fr 1fr;
    gap: 24px 10px;
	margin-top:40px;
}
.step-card {
    background: rgba(255,255,255,0.95);
	border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(248, 250, 252, 0.8);
    margin: 0 -18px;
    padding: 32px 24px 24px 24px;
    min-width: 180px;
    max-width: 220px;
	width: 100%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 1.2s;
}
.step-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(241, 245, 249, 0.9);
    transform: scale(1.04) translateY(-8px);
    z-index: 10;
}
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    width: 20px;
    height: 60%;
    background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(241, 245, 249, 0.6) 100%);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}
.step-card::before{
	content: '→';
	position: absolute;
	display: block;
	font-size: 48px;
	right: -36px;
	z-index: 10;
	top: calc(39% - 24px);
	color:#5adc5a;
}
.step-card.step2::before{
    bottom: -40px;
    right: 40%;
    top: unset;
    rotate: 90deg;	
}
.step-card.step3::before{
    right: unset;
    top: unset;
	left:-35px;
    rotate: 180deg;	
}
.step-card.step4::before{
    right: 40%;
    top: -40px;
    rotate: 270deg;	
}
.step-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    background: #f3d111;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.step-img {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.step-label {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .steps-horizontal {
        width: 98vw;
    }
    .step-card {
        min-width: 120px;
        max-width: 150px;
        padding: 18px 8px 12px 8px;
    }
    .step-img {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 700px) {
    .steps-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .step-card {
        min-width: 90vw;
        max-width: 98vw;
        margin: 0 0 18px 0;
    }
    .step-card:not(:last-child)::after {
        display: none;
    }
}

/* Freely Arranged Images and Content (aaa.png, bbb.png, ccc.png) - Update for no boxes */
.free-images {
    position: relative;
    width: 100vw;
    height: 550px;
    min-height: 300px;
    background: none !important;
    margin: 0;
    padding: 0;
    z-index: 2;
    pointer-events: none;
}
.free-image-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    pointer-events: auto;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    animation: floatStep 3s ease-in-out infinite alternate;
}
.free-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(212,165,116,0.13);
    margin-bottom: 18px;
    transition: transform 0.4s, box-shadow 0.4s;
    animation: popIn 1.2s cubic-bezier(.25,.8,.25,1);
    background: none !important;
}
.free-img-label {
    color: #b8860b;
    font-weight: 600;
    font-size: 1.1rem;
    background: none !important;
    border-radius: 0;
    padding: 8px 18px;
    margin-top: -10px;
    box-shadow: none !important;
    animation: fadeInUp 1.2s;
    pointer-events: none;
}
@media (max-width: 900px) {
    .free-img {
        width: 100px;
        height: 100px;
    }
    .free-images {
        height: 220px;
    }
}
@media (max-width: 600px) {
    .free-img {
        width: 60px;
        height: 60px;
    }
    .free-images {
        height: 120px;
    }
    .free-image-item {
        left: auto !important;
        right: auto !important;
        top: auto !important;
        position: static;
        margin: 0 0 18px 0;
    }
}

@media (max-width: 900px) {
  .carousel-floating-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: auto;
    padding: 24px 10px;
  }
  .carousel-text-left, .carousel-text-right {
    max-width: 90vw;
    text-align: center;
  }
  .carousel-text-right {
    margin-top: 12px;
  }
  .carousel-floating-track {
    width: 90vw;
    max-width: 340px;
    height: 340px;
  }
  .carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d4a574;
    z-index: 15;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .carousel-btn.left {
    left: -17.5px;
    top: 50%;
    transform: translateY(-50%);
  }
  .carousel-btn.right {
    right: -17.5px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Customer Check Section Specific Styles */
.customer-check .diagonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 70vh;
}

.customer-check .text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: 70vh;
    min-height: 70vh;
    width: 100%;
}

.customer-check .text-content {
    max-width: 500px;
    width: 100%;
}

.customer-check .image-section {
    display: none;
}

/* About Section Specific Styles */
.about .diagonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: 70vh;
}

.about .text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: 70vh;
    min-height: 70vh;
    width: 100%;
}

.about .text-content {
    max-width: 500px;
    width: 100%;
}

.about .image-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    width: 100%;
	background:white;
}

.about .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

/* Responsive styles for equal width/height sections */
@media (max-width: 767px) {
    .diagonal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .diagonal-section.reverse .diagonal-content {
        grid-template-columns: 1fr;
    }
    
    .text-section {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .image-section {
        height: 50vh;
        padding: 20px;
    }
    
    .customer-check .diagonal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .customer-check .text-section {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .about .diagonal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .about .text-section {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .about .image-section {
        height: 50vh;
        padding: 20px;
    }
	.diagonal-section.reverse .diagonal-content{
		display: block;
	}
	.hero-background {
		position: fixed;
		top: -20px;
	}
	.free-hero-text h1 {
		font-size: 2rem;
	}
	.free-hero-text h2 {
		font-size: 1.25rem;
	}	
	.free-hero-text{
		padding:20px;
		text-align:center;
	}
	.free-hero-cta,.benefits-tags{
		    justify-content: center;
	}
	.steps-horizontal, .offer-features {
        width: 100%;
		grid-template-columns: 1fr;		
	}
	#business-cycle-steps h3{
		font-size:1.5rem;
		margin-bottom:8px;
	}
	#business-cycle-steps p br{
		display:none;
	}
	.free-images {
        height: auto;
    }
	.free-img {
        width: 80%;
        height: 80%;
    }
	.faq h3, .benefits-title, .benefits h3, .contact-free-content h3{
		font-size: 1.7rem;
	}
	.faq-free-item{
		padding: 20px;
		border-radius: 20px;	
	}
	.special-benefits-steps{
		width:90%;
		margin-inline:auto;
	}
	.benefits-free-list {
        height: auto;
        display: flex;
        flex-direction: column;
		max-height:unset;
    }
	.benefit-free-item{
		position:unset;
		margin-bottom: 60px;
	}
	.benefit-free-img {
        width: 80%;
        height: 80%;
        border-radius: 10px;
    }
	.benefit-free-item p {
		max-width: 80%;
	}
	.benefits-free-list.list2 {
		height: auto;
	}
	.free-hero-text h1 span{
		display:block;
	}
	.check-item p{
		font-size: 14px;
	}
	.step-card.step4{
		order:4;
	}
	.step-card.step3{
		order:3;
	}
	.step-num{
		margin-bottom:0;
	}
	.step-card::before{
		font-size: 38px;
		right: calc(50% - 20px)!important;	
		top: unset!important;	
		bottom: -48px!important;	
		rotate: 90deg!important;	
		left:unset!important;	
	}
	.step-card.step4::before{
		display:none;
	}
}

.wpcf7 fieldset{
	display:none;
}

.wpcf7 input{
    padding: 6px;
    margin-top: 4px;	
}
.wpcf7  label{
	font-size: 15px;
}
.wpcf7 input.wpcf7-submit{
    width: 200px;
    font-weight: bold;
    cursor: pointer;	
}
.mandatory{
	color:red;
}
.wpcf7-not-valid-tip{
    display: block;
    color: red;	
}
.screen-reader-response > ul{
	display:none;
}