:root {
    --primary-color: #1D3E6E; /* Maven-inspired Deep Navy Blue */
    --primary-color: #1A365D; /* 기존보다 약간 더 부드럽고 가독성 좋은 네이비 */
    --primary-light: #2A5A9E; /* Lighter Navy for interactions */
    --secondary-color: #006D5B;
    --accent-color: #E6F0FA;
    --text-main: #1E293B;
    --text-light: #64748B;
    --bg-main: #F8FAFC;
    --bg-light: #FFFFFF; /* White */
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --border-radius: 16px;
    --border-radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Background Patterns */
.bg-pattern-main {
    background-color: var(--bg-main);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 30px 30px;
}

.bg-pattern-section {
    position: relative;
}

.bg-pattern-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.bg-pattern-section > .container {
    position: relative;
    z-index: 1;
}

body {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    letter-spacing: -0.015em;
    word-break: keep-all; /* 한글 단어 줄바꿈 방지 */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Material Icons configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* Subtle Background Image Overlays */
.section-padding, .hero {
    position: relative;
    overflow: hidden;
}

.section-padding::before, .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* 가시성을 위해 불투명도 상향 */
    z-index: 0;
    pointer-events: none;
}

#about::before { background-image: url('../assets/images/bg_clinic.png'); opacity: 0.18; }
#service::before { background-image: url('../assets/images/bg_tech.png'); opacity: 0.12; }
#portfolio::before { background-image: url('../assets/images/bg_tech.png'); opacity: 0.1; }
#roadmap::before { background-image: url('../assets/images/bg_tech.png'); opacity: 0.12; }
#tech::before { background-image: url('../assets/images/bg_tech.png'); opacity: 0.12; }
#contact::before { background-image: url('../assets/images/bg_contact.png'); opacity: 0.2; }
#hero::before { background-image: url('../assets/images/bg_tech.png'); opacity: 0.15; }

.section-padding > .container, .hero > .container {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #0F172A;
    word-break: keep-all;
    overflow-wrap: break-word;
}

h1 { font-size: 3.5rem; margin-bottom: 1.2rem; line-height: 1.2; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; }

p {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.highlight {
    color: var(--primary-color);
}

.text-primary { color: var(--primary-light) !important; }
.text-teal { color: var(--secondary-color) !important; }
.text-navy { color: var(--primary-color) !important; }

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Clean Panels */
.white-panel {
    background: #ffffff;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}
.p-1 { padding: 1.5rem; }
.p-2 { padding: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    background-color: #ffffff;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 32px; /* CI 크기 약간 조절 */
    width: auto;
    display: block;
}

.logo-company {
    font-size: 1.25rem; /* 요청하신 1.25rem으로 확대 */
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 2px;
    letter-spacing: -0.01em;
    line-height: 1;
}

.logo-divider {
    color: var(--border-color);
    font-size: 1.5rem;
    font-weight: 200;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

header:not(.scrolled) .logo-company { color: rgba(255, 255, 255, 0.8); }
header:not(.scrolled) .logo-divider { color: rgba(255, 255, 255, 0.2); }
header:not(.scrolled) .service-name { color: #4FD1C5; }

@media (max-width: 480px) {
    .logo-img { height: 28px; }
    .logo-company { font-size: 0.6rem; }
    .service-name { font-size: 1.3rem; }
    .logo-link { gap: 10px; }
}
.logo-img-footer {
    height: 32px;
    width: auto;
    display: block;
    margin-right: 10px;
}

.gnb ul {
    display: flex;
    flex-direction: row;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gnb a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.hero + .header:not(.scrolled) .gnb a,
.hero .header:not(.scrolled) .gnb a,
header:not(.scrolled) .gnb a {
    color: rgba(255, 255, 255, 0.9);
}

.gnb a:hover {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%); /* 그라데이션으로 깊이감 조절 */
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero h1 {
    color: #ffffff;
    font-weight: 300; /* Maven Light Heading Style */
    font-size: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem; /* 기존 4rem에서 축소 */
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
    word-break: keep-all;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9); /* 대비 향상 */
    line-height: 1.8;
}

.hero-content p strong, .hero-content p .highlight-text {
    color: #60A5FA; /* 강조색을 더 밝은 하늘색으로 변경하여 가독성 확보 */
    font-weight: 600;
}

.hero .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #E0F2FE;
    color: #0369A1;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero p strong {
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* About Section */
.section-header {
    margin-bottom: 60px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    padding: 40px 24px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item h3 span {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 4px;
}

.stat-item p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Benefit Cards & Comparison Table (New Service Section) */
.benefit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.bg-navy { background-color: var(--primary-color); }
.bg-teal { background-color: var(--secondary-color); }
.bg-light-blue { background-color: #E0F2FE; }
.bg-light-teal { background-color: #CCFBF1; }
.text-white { color: #ffffff !important; }
.rounded-t-lg { border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0; }
.rounded-b-lg { border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); border-top: none; }
.align-middle { vertical-align: middle; margin-right: 8px; }

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list {
    margin-top: 10px;
}
.benefit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
}
.benefit-list li .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-list li .icon .material-symbols-outlined {
    font-size: 24px;
}

.w-100 { width: 100%; }
.comparison-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    border: 1px solid var(--border-color);
}
.comparison-table th {
    background-color: var(--bg-gray);
    font-weight: 700;
    font-size: 1.1rem;
}
.comparison-table th.after {
    background-color: #E0F2FE;
    color: var(--primary-color);
}
.comparison-table td.before {
    color: var(--text-light);
}
.comparison-table td.after {
    font-weight: 600;
}
.highlight-text {
    color: #E11D48 !important;
    font-size: 1.2rem;
}
.text-sm { font-size: 1rem; }

/* Chart Section */
.chart-section {
    padding: 50px;
}
.chart-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}
.chart-text {
    flex: 1;
}
.chart-canvas-container {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}
.chart-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}
.bg-navy { background-color: #1E3A8A; }
.bg-teal { background-color: #0F766E; }
.bg-blue { background-color: #0284C7; }

/* Tech Section */
.tech-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.tech-image img {
    border-radius: var(--border-radius);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.tech-item {
    padding: 32px 24px;
}

.tech-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.tech-item h4 .material-symbols-outlined {
    font-size: 24px;
}

.tech-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Horizontal Roadmap Layout */
.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.roadmap-item:hover .roadmap-image img {
    transform: scale(1.05);
}

.roadmap-text {
    flex: 1;
    padding: 50px;
}

.target-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    background-color: var(--bg-gray);
}

.roadmap-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.roadmap-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.roadmap-text ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.roadmap-text ul li .material-symbols-outlined {
    color: var(--primary-light);
    font-size: 20px;
}

/* Video Grid Section */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.video-item {
    width: calc(33.333% - 20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: #000;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-color);
}

.contact-form {
    padding: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-large {
    font-size: 36px;
    color: var(--primary-color);
    font-variation-settings: 'wght' 300;
}

.info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.required {
    color: #E11D48;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background-color: #0F172A; /* Slate 900 */
    color: #94A3B8; /* Slate 400 */
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-links a {
    margin-left: 24px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.copyright {
    margin-top: 24px;
    font-size: 0.85rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3rem !important; }
}

@media (max-width: 992px) {
    .gnb { display: none; }
    .header-container { justify-content: space-between; }
    .hero-content h1 { font-size: 2.5rem !important; }
    .stats-grid, .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        gap: 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    .chart-layout {
        flex-direction: column;
    }
    .roadmap-item, .roadmap-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    .roadmap-text {
        padding: 30px;
    }
    .video-item {
        width: calc(50% - 15px);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 40px;
    }
    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* Global Mobile Typography */
    h2 { font-size: 1.8rem !important; line-height: 1.3 !important; }
    h3 { font-size: 1.4rem !important; }
    p { font-size: 0.95rem !important; }

    /* Hero Section */
    .hero-content h1 { font-size: 1.6rem !important; line-height: 1.4 !important; margin-bottom: 15px !important; text-align: center; }
    .hero-content p { font-size: 0.9rem !important; margin-bottom: 25px !important; text-align: center; }
    .hero {
        padding-top: 100px !important;
        padding-bottom: 80px !important;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 40px;
    }
    .btn.btn-large {
        width: 100%;
        text-align: center;
    }

    /* Benefits Section */
    .benefit-list-content {
        padding: 40px 20px !important;
    }
    .benefit-list li {
        gap: 15px !important;
    }
    .icon-circle {
        width: 48px !important;
        height: 48px !important;
    }
    .icon-circle .material-symbols-outlined {
        font-size: 24px !important;
    }

    /* Process Section */
    .process-section {
        padding-top: 40px;
        margin-top: 40px;
    }
    .process-steps {
        flex-direction: column;
        gap: 0;
    }
    .process-step {
        width: 100%;
        margin-bottom: 10px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
        opacity: 0.5;
    }

    /* Chart Section */
    .chart-section {
        padding: 40px 20px !important;
    }
    .chart-layout {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px;
    }
    .chart-canvas-container {
        width: 260px !important;
        height: 260px !important;
    }

    /* Video Section */
    .video-grid {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .video-item {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Contact Section */
    .contact-info, .contact-form {
        padding: 30px 20px !important;
    }
    
    .section-padding {
        padding: 50px 0 !important;
    }
    
    .container {
        padding: 0 20px !important;
    }
}

/* Partners Marquee - Always Visible at the Bottom */
.partners-marquee {
    background-color: rgba(15, 23, 42, 0.8); /* 스크롤 시에도 잘 보이도록 배경 농도 조절 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: fixed; /* 화면 하단에 항상 고정 */
    bottom: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000; /* 모든 요소 위에 표시 */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
.partner-item {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-right: 60px;
    letter-spacing: 0.5px;
}
.partner-item .material-symbols-outlined {
    color: var(--secondary-color);
    margin-right: 6px;
    font-size: 22px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Process Section */
.process-section {
    max-width: 1100px;
    margin: 60px auto 0;
    padding-top: 50px;
    border-top: 1px dashed var(--border-color);
}
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.process-step {
    flex: 1;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}
.process-step:hover {
    transform: translateY(-5px);
}
.step-arrow {
    padding: 0 15px;
}

/* Glassmorphism Styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}
.glass-btn {
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}
.glass-btn:hover {
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
    transform: translateY(-2px);
}

/* Horizontal Bar Chart Styles */
.horizontal-chart-container {
    width: 100%;
}
.bar-item {
    text-align: left;
}
.bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}
.bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease-out;
}
.bar-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Benefits Section Mobile Responsive */
@media (max-width: 992px) {
    .glass-panel[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    .benefit-image {
        min-height: 250px !important;
        order: -1; 
    }
    .benefit-list-content {
        padding: 40px 24px !important;
    }
    .benefit-list-content h3 {
        font-size: 1.5rem !important;
    }
}
