body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to right, rgba(255, 64, 129, 0.5), rgba(0, 124, 161, 0.5));
}

.main-wrapper {
    background-color: white;
    min-height: 100vh;
    margin: 0;
}

/* Header */
.header {
    /* padding: 20px 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff4081;
    letter-spacing: 1px;
}

.check-score-btn {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    /* padding: 80px 40px; */
    background-color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #6b7280;
    font-weight: 300;
}

.hero-text h1 .highlight {
    color: #1f2937;
    font-weight: 700;
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ff4081;
    border-radius: 2px;
}

.hero-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.btn-appointment {
    background-color: #ff4081;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.btn-learn {
    background-color: #374151;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    text-align: center;
}

.credit-score-card {
    background: linear-gradient(135deg, #a8b5ff 0%, #7c3aed 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    margin-top: -20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    transform: rotate(-7deg);
    width: 100%;
    max-width: 350px;
    min-height: 180px;
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stars {
    color: #fbbf24;
}

.score-display {
    font-size: 18px;
    font-weight: bold;
}

.gauge-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gauge-labels {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.poor-label {
    color: #ff6868;
}

.excellent-label {
    color: #00ffaa;
}

/* Floating elements around illustration */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-percent {
    top: 20%;
    left: -10%;
    color: #3b82f6;
    animation-delay: -0.5s;
}

.float-coins {
    top: 10%;
    right: -5%;
    color: #f59e0b;
    animation-delay: -1s;
}

.float-shield {
    bottom: 15%;
    left: 5%;
    color: #10b981;
    animation-delay: -1.5s;
}

.character {
    position: absolute;
    bottom: 15%;
    right: 21%;
    font-size: 60px;
    animation: float 4s ease-in-out infinite;
    animation-delay: -2s;
}

/* Bottom Section */
.bottom-section {
    /* padding: 60px 40px; */
    background-color: #f5f5f5;
}

.bottom-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Credit Score Display */
.credit-display {
    text-align: center;
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    position: relative;
}

.score-arc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(from 180deg,
            #ef4444 0deg 50deg,
            #f97316 50deg 100deg,
            #eab308 100deg 140deg,
            #3b82f6 140deg 180deg,
            #10b981 180deg 220deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-arc::before {
    content: '';
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.score-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.score-number {
    font-size: 48px;
    font-weight: bold;
    color: #1f2937;
    line-height: 1;
}

.score-label {
    font-size: 16px;
    color: #6b7280;
    margin-top: 4px;
}

.score-indicator {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    z-index: 3;
}

/* Score badges */
.score-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.score-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.badge-poor {
    background-color: #ef4444;
}

.badge-fair {
    background-color: #f97316;
}

.badge-good {
    background-color: #eab308;
}

.badge-very-good {
    background-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-excellent {
    background-color: #10b981;
}

/* Content text */
.content-text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

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

.highlight-pink {
    color: #ff4081;
    font-weight: 600;
}



@media (max-width: 768px) {

    .hero-content,
    .bottom-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header {
        padding: 20px;
    }

    .hero-section,
    .bottom-section {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}