/* ===== 화이트서울치과 x 덴탈클리닉파인더 솔루션 소개 ===== */

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

:root {
    --primary-green: #2D5A3D;
    --primary-green-light: #3D7A52;
    --primary-green-dark: #1D3A2D;
    --gold: #C9A227;
    --gold-light: #D4B84A;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --light-gray: #E8E6E0;
    --dark-gray: #333333;
    --text-color: #2A2A2A;
    --gradient-green: linear-gradient(135deg, #2D5A3D 0%, #3D7A52 100%);
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #D4B84A 100%);
    --shadow: 0 10px 40px rgba(45, 90, 61, 0.15);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--off-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-green-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-text span {
    color: var(--gold);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-green);
    color: white !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-cta::after {
    display: none !important;
}

.nav-external {
    color: var(--gold) !important;
    font-weight: 600 !important;
}

.nav-external::after {
    background: var(--gold) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, #E8F0E8 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%232D5A3D" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(201, 162, 39, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-quote {
    background: var(--white);
    padding: 25px 30px;
    border-left: 4px solid var(--gold);
    border-radius: 0 15px 15px 0;
    margin-bottom: 35px;
    box-shadow: var(--shadow-light);
}

.hero-quote p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    font-style: italic;
}

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

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 비율 */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .video-section {
        padding: 30px 0;
    }

    .video-wrapper {
        border-radius: 12px;
    }
}

/* Score Section */
.score-section {
    background: var(--white);
}

.score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.score-visual {
    position: relative;
}

.score-gauge {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.gauge-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--light-gray) 0deg,
        var(--light-gray) 360deg
    );
    position: relative;
}

.gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-green) 0deg,
        var(--gold) 288deg,
        var(--light-gray) 288deg
    );
    animation: gaugeAnim 2s ease-out forwards;
}

@keyframes gaugeAnim {
    from {
        background: conic-gradient(
            var(--primary-green) 0deg,
            var(--light-gray) 0deg
        );
    }
}

.gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.1);
}

.gauge-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-green);
}

.gauge-label {
    font-size: 1rem;
    color: var(--dark-gray);
}

.score-target {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
}

.target-number {
    font-size: 2rem;
    font-weight: 800;
}

.target-label {
    font-size: 0.85rem;
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.score-item {
    background: var(--off-white);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.score-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.score-info {
    flex: 1;
}

.score-info h4 {
    margin-bottom: 5px;
}

.score-bar {
    height: 8px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    background: var(--gradient-green);
    border-radius: 10px;
    transition: width 1s ease;
}

.score-values {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.9rem;
}

.current-score {
    color: var(--primary-green);
    font-weight: 600;
}

.target-score {
    color: var(--gold);
    font-weight: 600;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
}

.features-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.features-section .section-title {
    color: white;
}

.features-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Strategy Section */
.strategy-section {
    background: var(--off-white);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.strategy-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-green);
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.strategy-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.strategy-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.strategy-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-gray);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--primary-green);
    color: white;
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-green);
    text-align: center;
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-size: 1.2rem;
}

.cta-section .btn-primary {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.cta-section .btn-primary:hover {
    background: var(--gold-light);
}

/* Footer */
.footer {
    background: var(--primary-green-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Partner Hospital Button */
.partner-hospital-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.partner-hospital-btn:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
    color: white !important;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-btn:hover {
    transform: translateX(5px);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    white-space: nowrap;
}

/* Hospital Button */
.hospital-btn {
    background: linear-gradient(135deg, #e85a19 0%, #ff7b3d 100%);
    box-shadow: 0 4px 15px rgba(232, 90, 25, 0.4);
}

.hospital-btn:hover {
    box-shadow: 0 6px 20px rgba(232, 90, 25, 0.5);
    background: linear-gradient(135deg, #ff7b3d 0%, #e85a19 100%);
}

/* Blog Button */
.blog-btn {
    background: linear-gradient(135deg, #03c75a 0%, #00e676 100%);
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.4);
}

.blog-btn:hover {
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.5);
    background: linear-gradient(135deg, #00e676 0%, #03c75a 100%);
}

/* Academy Button */
.academy-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.academy-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.btn-text-small {
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: left;
}

/* Chatbot Label */
.chatbot-label {
    position: fixed;
    right: 80px;
    bottom: 25px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.4);
    z-index: 9998;
    white-space: nowrap;
    animation: labelPulse 2s ease-in-out infinite;
}

.chatbot-label::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-green-light);
}

@keyframes labelPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@media (max-width: 768px) {
    .chatbot-label {
        right: 70px;
        bottom: 20px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-stats {
        position: relative;
        left: 0;
        bottom: 0;
        justify-content: center;
        margin-top: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .score-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Base typography - compact */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1rem; }
    p { font-size: 0.95rem; }

    body {
        line-height: 1.5;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 32px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px;
        gap: 10px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    /* Hero Section - compact */
    .hero {
        min-height: auto;
        padding: 70px 0 40px;
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-quote {
        padding: 15px 18px;
        margin-bottom: 20px;
    }

    .hero-quote p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
        border-radius: 15px;
    }

    .hero-stats {
        padding: 15px 20px;
        gap: 25px;
        border-radius: 12px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Section Common - compact */
    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-badge {
        padding: 5px 14px;
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .section-title {
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    /* Score Section - compact */
    .score-grid {
        gap: 25px;
    }

    .score-gauge {
        width: 200px;
        height: 200px;
    }

    .gauge-center {
        width: 130px;
        height: 130px;
    }

    .gauge-score {
        font-size: 2.5rem;
    }

    .gauge-label {
        font-size: 0.8rem;
    }

    .score-target {
        padding: 10px 15px;
        top: 10px;
        right: 10px;
    }

    .target-number {
        font-size: 1.3rem;
    }

    .target-label {
        font-size: 0.7rem;
    }

    .score-details {
        gap: 12px;
    }

    .score-item {
        padding: 15px;
        gap: 12px;
    }

    .score-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 10px;
    }

    .score-info h4 {
        font-size: 0.9rem;
    }

    .score-info p {
        font-size: 0.8rem;
    }

    .score-bar {
        height: 6px;
        margin-top: 8px;
    }

    .score-values {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    /* Features Section - compact */
    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Strategy Section - compact */
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .strategy-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .strategy-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .strategy-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .strategy-card p {
        font-size: 0.8rem;
    }

    /* Process Section - compact */
    .process-timeline {
        padding: 20px 0;
        gap: 25px;
    }

    .process-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .process-step h4 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .process-step p {
        font-size: 0.8rem;
    }

    /* CTA Section - compact */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Footer - compact */
    .footer {
        padding: 35px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-brand .logo-text {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer ul li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }

    /* Partner Hospital Button - compact */
    .partner-hospital-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    /* Floating Buttons - compact */
    .floating-buttons {
        left: 10px;
        bottom: 80px;
        gap: 8px;
    }

    .floating-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 30px;
    }

    .btn-icon {
        font-size: 0.95rem;
    }

    .btn-text {
        font-size: 0.7rem;
    }

    .btn-text-small {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    /* Chatbot Label */
    .chatbot-label {
        right: 65px;
        bottom: 18px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* Utility adjustments */
    .mt-40 { margin-top: 25px; }
    .mb-40 { margin-bottom: 25px; }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--primary-green); }
.text-skyblue { color: #5bc0de; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
