/* Mobile-First Full-Width Layout */
.full-width-section {
    width: 100%;
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.text-muted {
    color: #666;
    opacity: 0.85;
}

/* Typography - Clean & Readable */
.heading-xl {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.heading-lg {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.heading-md {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 600;
}

.body-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Simple Grid - No boxes */
.simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .simple-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Items - No panels */
.service-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

/* Stats - Simple Display */
.stat-item {
    padding: 30px 0;
    text-align: center;
}

.stat-number {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    color: #10b981;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(14px, 2vw, 18px);
    color: #666;
}

/* Process Steps - Linear Flow */
.process-step {
    padding: 30px 0;
    border-left: 3px solid #10b981;
    padding-left: 20px;
    margin-bottom: 20px;
}

.step-number {
    display: inline-block;
    background: #10b981;
    color: white;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 10px;
}

/* FAQ - Clean Accordion Style */
.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    margin-bottom: 15px;
    color: #059669;
}

/* Case Study */
.case-study {
    padding: 40px 0;
    border-top: 2px solid #f0f0f0;
}

/* Advantages */
.advantage-item {
    padding: 25px 0;
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

/* Background Sections */
.bg-light {
    background: #f9fafb;
}

.bg-dark {
    background: #1f2937;
    color: white;
}

.bg-dark .text-muted {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #10b981;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #059669;
}

.cta-button-outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button-outline:hover {
    background: white;
    color: #1f2937;
}

/* Image responsive */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Spacing utilities */
.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}
