:root {
    --primary-color: #1E2A31;
    --secondary-color: #B59A72;
    --text-color: #2F2D29;
    --light-grey: #D9D9D9;
    --medium-grey: #61747D;
    --background-color: #FFF;
    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: left;
}

h1, h2, h3 {
    color: var(--text-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.button.primary-cta {
    background-color: var(--secondary-color);
    color: #fff;
}

header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: 200px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

section {
    padding: 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}


.hero {
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
	margin-top:0px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .button {
    margin: 0 10px;
}

.hero-image {
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
}

.key-highlights {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: 500;
    max-width: 800px;
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

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

.two-column-layout .text-content, .two-column-layout .image-content {
    width: 48%;
}

.two-column-layout.reverse {
    flex-direction: row-reverse;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
}

.hero ul li {
    margin-bottom: 10px;
}

.problem ul, .value-prop .mini-blocks, .workflow ol {
    padding-right: 20px;
}

.value-prop .mini-blocks {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.value-prop .mini-blocks div {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.evaluation-system ul, .group-ranking ul, .ai-avatar ul, .results-reports ul {
    padding-right: 20px;
}

.audience-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    width: 48%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.card h3 {
    margin-top: 0;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .button {
    margin: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #f2f2f2;
    color: #666;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.step-box {
    width: 30%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--medium-grey);
    color: #fff;
    font-size: 1.5em;
    margin: 0 auto 20px;
}

.step-title {
    font-weight: bold;
}

.stepper-container {
    position: relative;
    margin: 40px 0;
    padding-left: 50px;
}

.stepper-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #eee;
}

.stepper-item {
    position: relative;
    margin-bottom: 30px;
}

.stepper-item:last-child {
    margin-bottom: 0;
}

.stepper-number {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--medium-grey);
    color: #fff;
    text-align: center;
    font-size: 1.2em;
    z-index: 1;
}

.stepper-content {
    padding-left: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.alternate-bg {
    background-color: #f3f4f6;
}

.group-ranking {
    background-color: var(--bg-white);
}

h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}

.hero-btns .btn {
    margin: 10px;
}

/* Two-Column Layout */
.two-column-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Benefits Grid */
.benefits-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-weight: 500;
    font-size: 15px;
    color: #4b5563;
}
.point{
	padding:10px;
	
}
.point div{
		padding:20px;

		background-color:#f3f4f6;

}
/* Footer */
footer {
    padding: 40px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .two-column-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* Change order for the second section to keep text first on mobile if desired, 
       but currently the second section has grid first in HTML. 
       Let's make them consistent on mobile: Text then Grid. */
    .group-ranking .two-column-layout {
        flex-direction: column-reverse;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
}
