.hero-section {
    padding: 120px 24px 80px 24px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

#logo-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

#logo-s,
#logo-p,
#logo-o1,
#logo-o2,
#logo-c {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #0C0C0C;
    margin: 0 0 24px 0;
    letter-spacing: -1.5px;
}

.hero-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(12, 12, 12, 0.6);
    max-width: 680px;
    margin: 0 0 48px 0;
}

.input-panel {
    display: flex;
    width: 100%;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(71, 89, 228, 0.15);
    border-radius: 12px;
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    gap: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-panel:focus-within {
    border-color: #4759E4;
    box-shadow: 0 8px 30px rgba(71, 89, 228, 0.08);
}

.claim-input-box {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #0C0C0C;
    outline: none;
}

.claim-input-box::placeholder {
    color: rgba(12, 12, 12, 0.4);
}

.analyze-action-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #F3F3F9;
    background-color: #4759E4;
    border: none;
    border-radius: 8px;
    padding: 0 32px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.analyze-action-btn:hover {
    background-color: #3647c4;
}

.analyze-action-btn:disabled {
    background-color: rgba(71, 89, 228, 0.5);
    cursor: not-allowed;
}

.input-hint {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(12, 12, 12, 0.45);
    margin-top: 14px;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 40px;
    }
    .hero-lead {
        font-size: 16px;
    }
    .input-panel {
        flex-direction: column;
        padding: 8px;
    }
    .analyze-action-btn {
        padding: 16px;
    }
}
